/* Genre Mashup Page Styles */

/* Breadcrumb */
.breadcrumb {
    font-size: 0.85em;
    color: #7f8c8d;
    margin-bottom: 15px;
}
.breadcrumb a {
    color: #3498db;
    text-decoration: none;
}
.breadcrumb a:hover {
    text-decoration: underline;
}
.breadcrumb .separator {
    margin: 0 8px;
    color: #bdc3c7;
}

/* Category Switcher */
.category-switcher {
    float: right;
    margin-bottom: 10px;
}
.category-switcher select {
    padding: 8px 12px;
    border: 1px solid #4ca1af;
    border-radius: 5px;
    background: #2c3e50;
    color: #fff;
    font-size: 0.9em;
    cursor: pointer;
}
.category-switcher select:hover {
    border-color: #3498db;
}

.mashup-header {
    background: linear-gradient(135deg, #2c3e50, #4ca1af);
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 2px solid #3498db;
}
.mashup-header::after {
    content: "";
    display: table;
    clear: both;
}

.mashup-title {
    font-size: 2em;
    font-weight: bold;
    color: #ecf0f1;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.mashup-subtitle {
    font-size: 1.1em;
    color: #bdc3c7;
    margin-bottom: 20px;
}

.genre-selector-container {
    background: #fdfdfd;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.genre-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.genre-pill {
    display: inline-block;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-radius: 20px;
    cursor: pointer;
    background: #f9f9f9;
    color: #555;
    font-size: 0.9em;
    transition: all 0.2s ease;
    text-decoration: none;
    user-select: none;
}

.genre-pill:hover {
    background: #eee;
    color: #333;
    border-color: #bbb;
}

.genre-pill.active {
    background: #3498db;
    color: white;
    border-color: #2980b9;
    box-shadow: 0 2px 4px rgba(52, 152, 219, 0.3);
}

.mashup-status-bar {
    background: rgba(52, 152, 219, 0.1);
    border-left: 4px solid #3498db;
    padding: 10px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: bold;
}

.selected-genres-list {
    font-style: italic;
    color: #e74c3c;
}

/* Clear All Button */
.clear-all-btn {
    display: inline-block;
    background: #e74c3c;
    color: white;
    border: none;
    padding: 6px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.85em;
    margin-left: 10px;
    text-decoration: none;
    transition: background 0.2s;
}
.clear-all-btn:hover {
    background: #c0392b;
    color: white;
}

/* Popular Combos Section */
.popular-combos {
    margin: 15px 0;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 5px;
    border: 1px solid #eee;
}
.popular-combos-title {
    font-weight: bold;
    color: #666;
    margin-bottom: 10px;
    font-size: 0.85em;
    text-transform: uppercase;
}
.combo-chip {
    display: inline-block;
    padding: 5px 12px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 15px;
    font-size: 0.85em;
    margin: 3px;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}
.combo-chip:hover {
    transform: scale(1.05);
    color: white;
    box-shadow: 0 3px 8px rgba(102, 126, 234, 0.4);
}

/* No Results Box */
.no-results-box {
    text-align: center;
    padding: 40px 20px;
    background: #fef9e7;
    border: 2px dashed #f1c40f;
    border-radius: 8px;
    margin: 20px 0;
}
.no-results-box .no-results-icon {
    font-size: 3em;
    margin-bottom: 10px;
}
.no-results-box .no-results-title {
    font-size: 1.2em;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 8px;
}
.no-results-suggestion {
    color: #666;
    margin-top: 10px;
    font-size: 0.9em;
}

/* Initial state box */
.initial-state-box {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, #e8f4f8, #d4edda);
    border-radius: 8px;
    margin: 20px 0;
}
.initial-state-box .hint-icon {
    font-size: 2.5em;
    margin-bottom: 10px;
}
.initial-state-box .hint-text {
    font-size: 1.1em;
    color: #2c3e50;
}

/* Sort link styling */
.mainbox3 a.current-sort {
    color: #3498db;
    font-weight: bold;
    text-decoration: underline;
}