/* Playlists: active row highlight (moved from template) */
.playlist-row-full.active-playlist {
    background-color: rgba(0, 123, 255, 0.08);
}

/* ==========================================================================
   COMPONENTS.CSS - Simuze Theme Global Reusable Components
   ========================================================================== */

/* Button color variables - use light gray-blue for all buttons */
:root {
  --button-color: #90A4AE; /* Light gray-blue for all buttons */
  --button-color-hover: #78909C; /* Darker gray-blue for hover state */
}

/* ==========================================================================
   IMAGE CROPPING - Crop overlay and selection styling
   ========================================================================== */

/* Removed duplicate .crop-overlay and .crop-selection - see forms.css for complete definitions */

.crop-instructions {
    position: absolute;
    top: 10px;
    left: 10px;
    color: white;
    background: rgba(0, 0, 0, 0.8);
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    z-index: 1001;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.artwork-upload-container {
    position: relative;
    display: inline-block;
}

.artwork-upload-container img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.track-artwork-container {
    position: relative;
    display: inline-block;
}

/* ==========================================================================
   FEATURED ITEMS - Homepage featured album, playlist, artist
   ========================================================================== */

/* Featured items - remove all underlines */
.featured-album-link,
.featured-playlist-link,
.featured-artist-link,
.featured-album-card-link,
.featured-playlist-card-link,
.featured-artist-card-link,
.featured-single-card-link,
.album-link,
.featured-album-grid .album-link {
    text-decoration: none !important;
    color: inherit;
}

.featured-album-link:hover,
.featured-playlist-link:hover,
.featured-artist-link:hover,
.featured-album-card-link:hover,
.featured-playlist-card-link:hover,
.featured-artist-card-link:hover,
.featured-single-card-link:hover {
    text-decoration: none !important;
}

/* Featured album wrapper - transparent background */
.featured-album-wrapper {
    position: relative;
    background: transparent;
}

.featured-single-wrapper {
    position: relative;
    background: transparent;
}

/* Featured album and single use same structure as latest albums slideshow */
.featured-album-wrapper .album-card,
.featured-single-wrapper .album-card {
    width: 200px;
    margin: 0 auto;
}

/* Featured playlist card */
.featured-playlist-card {
    position: relative;
    background: transparent;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.featured-playlist-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.featured-playlist-card.empty {
    padding: 40px 20px;
    text-align: center;
    color: #888;
}

.featured-playlist-card-link {
    display: block;
    text-decoration: none !important;
    color: inherit;
}

.featured-playlist-card-artwork {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-playlist-card-artwork img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-playlist-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 3em;
}

.featured-playlist-card-info {
    padding: 15px;
}

.featured-playlist-card-title {
    margin: 0 0 8px 0;
    font-size: 1.1em;
    color: #fff;
    font-weight: 600;
}

.featured-playlist-card-owner {
    color: #aaa;
    font-size: 0.9em;
    margin: 5px 0;
}

.featured-playlist-card-tracks {
    color: #888;
    font-size: 0.85em;
    margin: 5px 0 0 0;
}

/* Featured artist card */
.featured-artist-card {
    position: relative;
    background: transparent;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.featured-artist-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.featured-artist-card.empty {
    padding: 40px 20px;
    text-align: center;
    color: #888;
}

.featured-artist-card-link {
    display: block;
    text-decoration: none !important;
    color: inherit;
}

.featured-artist-card-avatar {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-artist-card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.featured-artist-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 3em;
}

.featured-artist-card-info {
    padding: 15px;
}

.featured-artist-card-title {
    margin: 0 0 8px 0;
    font-size: 1.1em;
    color: #fff;
    font-weight: 600;
}

.featured-artist-card-location {
    color: #aaa;
    font-size: 0.9em;
    margin: 5px 0 0 0;
}

/* Legacy featured items (homepage) - keep for backward compatibility */
.featured-album,
.featured-playlist,
.featured-artist {
    position: relative;
    background: #1a1a1a;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.featured-album.empty,
.featured-playlist.empty,
.featured-artist.empty {
    padding: 40px 20px;
    text-align: center;
    color: #888;
}

#music_featured_album h3,
#music_featured_playlist h3,
#music_featured_artist h3,
#music_featured_single h3 {
    margin-bottom: 15px;
    color: #fff;
    font-size: 1.1em;
}

/* Scale down featured items for 4-column layout */
#music_featured_album,
#music_featured_playlist,
#music_featured_artist,
#music_featured_single {
    font-size: 0.9em;
}

/* Featured single card */
.featured-single-card {
    position: relative;
    background: transparent;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.featured-single-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.featured-single-card.empty {
    padding: 40px 20px;
    text-align: center;
    color: #888;
}

.featured-single-card-link {
    display: block;
    text-decoration: none !important;
    color: inherit;
}

.featured-single-card-artwork {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-single-card-artwork img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-single-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 3em;
}

.featured-single-card-info {
    padding: 12px;
}

.featured-single-card-title {
    margin: 0 0 6px 0;
    font-size: 1em;
    color: #fff;
    font-weight: 600;
}

.featured-single-card-artist {
    color: #aaa;
    font-size: 0.85em;
    margin: 0;
}

/* Scale down all featured cards for 4-column layout */
.featured-album-wrapper,
.featured-single-wrapper,
.featured-playlist-card,
.featured-artist-card {
    font-size: 0.9em;
}

.featured-album-wrapper,
.featured-single-wrapper,
.featured-playlist-card,
.featured-artist-card {
    margin-bottom: 0;
}

/* Featured playlist button styling */
.featured-playlist-link-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: var(--color-accent, #51ac32);
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9em;
    transition: background 0.2s ease;
}

.featured-playlist-link-btn:hover {
    background: var(--color-accent-hover, #429a28);
    text-decoration: none;
    color: #fff;
}

/* Remove underlines from all album/playlist/artist links */
.album-link,
.album-link:hover,
.album-link:visited,
.album-link:active,
.featured-album-card-link,
.featured-playlist-card-link,
.featured-artist-card-link {
    text-decoration: none !important;
    border-bottom: none !important;
}

.track-artwork-container img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

/* ==========================================================================
   SCHEDULE BUTTON - Dynamic publish/schedule button styling
   ========================================================================== */

.schedule-upload {
    background: #ff6b35 !important;
    color: white !important;
    border: 1px solid #ff6b35 !important;
    padding: 10px 20px !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    margin-left: 10px !important;
}

.schedule-upload:hover {
    background: #e55a2b !important;
    border-color: #e55a2b !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3) !important;
}

.schedule-upload i {
    margin-right: 8px !important;
}

/* ==========================================================================
   TAB SYSTEM - Global reusable tabs
   ========================================================================== */

/* Modern Tab System */
.tabs {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.tabs-nav,
.tab-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    background: var(--color-bg-card);
    border-radius: 8px;
    border: 1px solid rgba(184,186,193,0.2);
    overflow: hidden;
    margin-bottom: 20px;
}

.tabs-nav li,
.tab-item {
    flex: 1;
    text-align: center;
    cursor: pointer;
    padding: 15px 20px;
    border-right: 1px solid rgba(184,186,193,0.2);
    background: var(--color-bg-card);
    color: var(--color-text-subtle);
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none !important;
}

.tabs-nav li *,
.tab-item *,
.tabs-nav li a,
.tab-item a,
.tabs-nav li span,
.tab-item span {
    text-decoration: none !important;
}

.tabs-nav li:hover,
.tab-item:hover,
.tabs-nav li:hover *,
.tab-item:hover * {
    text-decoration: none !important;
}

.tabs-nav li:last-child,
.tab-item:last-child {
    border-right: none;
}

.tabs-nav li:hover,
.tab-item:hover {
    background: #e9ecef;
    color: #495057;
}

.tabs-nav li.active,
.tab-item.active,
.tabs-nav a.active {
    background: rgba(79, 125, 243, 0.15);
    color: var(--color-text);
    border-color: var(--color-accent);
}

.tabs-nav a {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    border: 1px solid transparent;
    border-bottom: none;
    border-radius: 4px 4px 0 0;
    color: var(--color-text-subtle);
    background: transparent;
    transition: all 0.3s ease;
    font-weight: 500;
}

.tab-item i {
    margin-right: 8px;
}

.tab-item .tab-number {
    background: var(--button-color, #90A4AE);
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8em;
    font-weight: 600;
    margin-right: 8px;
}

.tab-item.active .tab-number {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 16px;
}

.tab-content {
    display: none;
    width: 100%;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
}

.tab-content.active,
.tab-content.current {
    display: block;
}

.tab-content.refreshing {
    opacity: 0.6;
    pointer-events: none;
    position: relative;
}

.tab-content.refreshing::after {
    content: "Refreshing...";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    z-index: 1000;
}

/* Legacy tabs support */
ul.tabs {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    border-bottom: 1px solid #ddd;
}

ul.tabs li {
    position: relative;
    background: none;
    color: #9b9b9a;
    background: transparent;
    display: inline-block;
    padding: 10px 0 5px 0;
    cursor: pointer;
    margin: 0 20px 0 0;
    border: 0;
    z-index: 1;
}

ul.tabs li.current,
ul.tabs li:hover,
ul.tabs li:active {
    background: rgba(255,255,255,0.05);
    color: var(--color-text);
    border-bottom: 2px solid var(--color-accent);
}

/* ==========================================================================
   GRID SYSTEM - Global reusable grids
   ========================================================================== */

.content-grid {
    display: grid;
    gap: var(--space-24);
    width: 100%;
}

.grid-auto {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ==========================================================================
   CARD SYSTEM - Global reusable cards
   ========================================================================== */

.card {
    background: var(--color-bg-card);
    border: 1px solid rgba(184,186,193,0.2);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
    position: relative;
}

.card:hover {
    box-shadow: 0 4px 18px rgba(0,0,0,0.18);
    transform: translateY(-2px);
}

.card-artwork {
    width: 100%;
    height: 200px;
    background: #1a1d24;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.card-artwork img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-artwork i {
    font-size: 3rem;
    color: #ddd;
}

.card-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-text-subtle);
    text-align: center;
}

.card-header {
    padding: var(--space-16) var(--space-24) 0;
    border-bottom: none;
}

.card-body {
    padding: var(--space-16) var(--space-24);
}

.card-footer {
    padding: 0 var(--space-24) var(--space-24);
    background: transparent;
    border-top: none;
}

.card-title {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.3;
}

.card-subtitle {
    margin: 0 0 12px 0;
    font-size: 14px;
    color: var(--color-text-subtle);
    font-weight: 500;
}

.card-meta {
    font-size: 13px;
    color: var(--color-text-subtle);
    margin-bottom: 8px;
}

.card-actions {
    display: flex;
    gap: 8px;
    margin-top: 15px;
}

/* ==========================================================================
   OVERVIEW STATS COMPONENTS
   ========================================================================== */

.overview-stats {
    margin-bottom: 0;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-16);
}

.stat-item {
    text-align: center;
    padding: 15px;
    background: var(--color-bg-card);
    border-radius: 6px;
    border: 1px solid rgba(184,186,193,0.2);
    transition: all 0.2s ease;
    color: var(--color-text);
}

.stat-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.stat-item i {
    font-size: 24px;
    margin-bottom: 8px;
    display: block;
}

.stat-item.published i { color: #28a745; }
.stat-item.in-progress i { color: #ffc107; }
.stat-item.scheduled i { color: #17a2b8; }
.stat-item.under-review i { color: #fd7e14; }

.stat-number {
    display: block;
    font-size: 24px;
    font-weight: bold;
    color: var(--color-text);
    margin-bottom: 4px;
}

.stat-label {
    display: block;
    font-size: 12px;
    color: var(--color-text-subtle);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Tab count badges */
.tab-count {
    background: var(--button-color, #90A4AE);
    color: white;
    border-radius: 12px;
    padding: 2px 8px;
    font-size: 11px;
    font-weight: bold;
    margin-left: 8px;
    min-width: 18px;
    text-align: center;
    display: inline-block;
}

.tab-item.active .tab-count {
    background: var(--button-color-hover, #78909C);
}

.tab-item:hover .tab-count {
    background: var(--button-color-hover, #78909C);
}

/* Hidden file input */
.file-input-hidden {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
}

/* Debug info container */
.debug-info-container {
    background: #f8f9fa;
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 20px;
    font-family: monospace;
    position: relative;
}

.debug-info-container h4 {
    margin-top: 0;
}

.debug-info-container pre {
    max-height: 200px;
    overflow: auto;
    font-size: 12px;
}

.debug-info-container button,
.debug-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ddd;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
}

/* Additional debug and form styles */
.debug-warning {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 10px;
    margin: 10px 0;
    border-radius: 4px;
    font-size: 12px;
}

.debug-info {
    background: #fffde7;
    border: 1px solid #ffd54f;
    padding: 8px;
    border-radius: 4px;
    margin-bottom: 15px;
}

.debug-track-info {
    background: #f0f0f0;
    border: 1px solid #ddd;
    padding: 10px;
    margin-bottom: 15px;
    font-size: 12px;
}

.debug-track-info pre {
    max-height: 100px;
    overflow: auto;
}

.hidden-input {
    display: none;
}

.add-track-btn {
    float: right;
    margin-top: -5px;
}

/* Removed duplicate .track-content and .artwork-preview - see album-edit.css and forms.css for complete definitions */

/* Removed duplicate .simple-cropper - see forms.css for complete definition */

/* Removed duplicate .crop-controls and .crop-preview - see forms.css for complete definitions */

/* Removed duplicate .crop-box - see forms.css for complete definition */

/* Removed duplicate .crop-canvas - see forms.css for complete definition */

/* Active track highlighting */
.upload-row.active-track {
    background-color: rgba(0, 123, 255, 0.08);
}

/* Active playlist highlighting */
.playlist-row-full.active-playlist {
    background-color: rgba(0, 123, 255, 0.08);
}

/* Playlist single container */
.playlist-single-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Upload test page styles */
.upload-test-body {
    font-family: Arial, sans-serif;
    margin: 20px;
}

.upload-test-limit {
    margin: 10px 0;
    padding: 10px;
    border: 1px solid #ccc;
}

.upload-test-good {
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.upload-test-warning {
    background-color: #fff3cd;
    border-color: #ffeaa7;
}

.upload-test-error {
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.upload-test-debug {
    background-color: #e2e3e5;
    border-color: #d6d8db;
    font-family: monospace;
}

/* ==========================================================================
   ALBUM EDIT COMPONENTS
   ========================================================================== */

/* Album Edit Styles */
.album-edit-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.album-edit-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #eee;
}

.form-section {
    background: var(--color-bg-card);
    border: 1px solid rgba(184,186,193,0.2);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.form-section h3 {
    margin-top: 0;
    margin-bottom: 20px;
    color: var(--color-text);
    font-size: 1.3em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.album-edit-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    align-items: start;
}

.album-artwork-section {
    text-align: center;
    min-height: 200px;
    border: 1px solid rgba(184,186,193,0.2);
    border-radius: 8px;
    padding: 15px;
    background: var(--color-bg-card);
}

/* Removed duplicate .artwork-preview-container, .current-artwork, .no-artwork-placeholder - see forms.css for complete definitions */

.no-artwork-placeholder i {
    font-size: 3em;
    margin-bottom: 10px;
    display: block;
}

.artwork-upload-controls {
    margin-top: 15px;
    padding: 10px;
    background: var(--color-bg-card);
    border: 1px solid rgba(184,186,193,0.2);
    border-radius: 4px;
}

.artwork-upload-controls button {
    background: var(--button-color, #90A4AE);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.artwork-upload-controls button:hover {
    background: var(--button-color-hover, #78909C);
}

/* File Change Section */
.file-change-container {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: start;
}

.current-file-info {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 6px;
    border: 1px solid #e9ecef;
}

.file-details {
    margin-bottom: 15px;
}

.file-name {
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
}

.file-size {
    color: #666;
    font-size: 0.9em;
}

.audio-preview {
    margin-top: 15px;
}

.audio-preview audio {
    width: 100%;
    max-width: 400px;
}

.file-change-controls {
    text-align: center;
}

/* Tabs Navigation */
.tabs-navigation {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 20px;
}

/* ==========================================================================
   ALBUM COMPONENTS - Enhanced album styling
   ========================================================================== */

.albums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 20px;
    transition: all 0.5s ease;
}

.albums-grid.rearranging {
    opacity: 0.8;
}

/* Card-style album (border, background, action bar) – ONLY for music upload overview (.albums-grid) */
/* !important needed to override layout.css .album-card { border: none !important; background: none !important } */
.albums-grid .album-card {
    background: var(--color-bg-card, #2a2a2a) !important;
    border: 1px solid rgba(184,186,193,0.2) !important;
    border-radius: 12px;
    overflow: hidden;
    transition: opacity 0.5s ease, transform 0.5s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08) !important;
    position: relative;
    outline: none !important;
}

.albums-grid .album-card:focus,
.albums-grid .album-card:active {
    outline: none !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08) !important;
}

.albums-grid .album-card.fade-out {
    opacity: 0;
    transform: scale(0.95);
}

.albums-grid .album-card.deleting {
    border: 3px solid #dc3545 !important;
    box-shadow: 0 0 15px rgba(220, 53, 69, 0.5) !important;
    opacity: 0.7;
    pointer-events: none;
    position: relative;
    transition: all 0.3s ease;
}

.albums-grid .album-card.deleting::after {
    content: "Deleting...";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(220, 53, 69, 0.9);
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: bold;
    z-index: 1000;
    font-size: 14px;
}

.albums-grid .album-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.15) !important;
    transform: translateY(-3px);
    border-color: var(--color-accent) !important;
}

.album-link {
    display: block;
    text-decoration: none !important;
    color: inherit;
    outline: none !important;
    position: relative;
    z-index: 1;
}

.album-link:focus,
.album-link:active,
.album-link:hover {
    text-decoration: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.album-link *,
.album-link *:focus,
.album-link *:active,
.album-link *:hover,
.album-link h4,
.album-link h4:focus,
.album-link h4:active,
.album-link h4:hover,
.album-link .album-title,
.album-link .album-title:focus,
.album-link .album-title:active,
.album-link .album-title:hover,
.album-link .album-artist,
.album-link .album-artist:focus,
.album-link .album-artist:active,
.album-link .album-artist:hover,
.album-link .album-release-date,
.album-link .album-release-date:focus,
.album-link .album-release-date:active,
.album-link .album-release-date:hover,
.album-link .album-track-count,
.album-link .album-track-count:focus,
.album-link .album-track-count:active,
.album-link .album-track-count:hover {
    text-decoration: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.album-card *,
.album-card *:focus,
.album-card *:active,
.album-card *:hover {
    text-decoration: none !important;
    outline: none !important;
}

.album-info *,
.album-info *:focus,
.album-info *:active,
.album-info *:hover {
    text-decoration: none !important;
    outline: none !important;
}

/* Upload overview only: card artwork (full width, gradient) */
.albums-grid .album-card .album-artwork {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, #3a3a3a 0%, #51ac32 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    border-radius: 12px 12px 0 0;
}

.album-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.albums-grid .album-card:hover .album-cover {
    transform: scale(1.05);
}

.album-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

.album-placeholder i {
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 6px;
}

.album-actions .license-btn img {
    display: block;
    width: 18px;
    height: 18px;
}

/* Album info – upload overview only (padding for card) */
.albums-grid .album-card .album-info {
    padding: 20px 20px 0 20px;
}

.album-info {
    padding: 20px;
}

/* Typography for upload overview cards (public uses layout.css .album-title / .album-artist) */
.albums-grid .album-card .album-title {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.albums-grid .album-card .album-artist {
    margin: 0 0 12px 0;
    font-size: 14px;
    color: var(--color-text-subtle, #999);
    font-weight: 500;
}

.album-group {
    margin: 0 0 12px 0;
    font-size: 14px;
    color: var(--color-text-subtle, #999);
    font-weight: 500;
}

.album-release-date,
.album-track-count {
    font-size: 13px;
    color: var(--color-text-subtle, #999);
    margin-bottom: 4px;
}

.album-track-count {
    font-weight: 500;
}

/* Album actions bar – ONLY for upload overview (.albums-grid), fixed to bottom edge, buttons side-by-side */
.albums-grid .album-card {
    padding-bottom: 56px !important; /* Space for action bar so content doesn't overlap */
}

.albums-grid .album-card .album-actions {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px;
    padding: 10px 16px;
    margin: 0;
    min-height: 44px;
    box-sizing: border-box;
    background: var(--color-bg-card, #2a2a2a);
    border-top: 1px solid rgba(184,186,193,0.2);
    border-radius: 0 0 12px 12px;
    z-index: 10;
    visibility: visible !important;
    opacity: 1 !important;
}

.albums-grid .album-card .album-actions .action-button,
.albums-grid .album-card .album-actions .edit-button,
.albums-grid .album-card .album-actions .delete-button {
    display: inline-flex !important;
    flex-shrink: 0;
    align-items: center;
    visibility: visible !important;
    opacity: 1 !important;
    padding: 6px 12px !important;
    font-size: 13px !important;
    position: relative;
    z-index: 11;
    cursor: pointer;
    gap: 6px !important;
}

/* Status Badges - upload overview album cards */
.albums-grid .album-card .status-badge,
.album-item .status-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

/* General status badge - inline by default */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.status-draft {
    background: rgba(108, 117, 125, 0.9);
    color: #fff;
}

.status-badge.status-under_review {
    background: rgba(255, 193, 7, 0.9);
    color: #000;
}

.status-badge.status-rejected {
    background: rgba(220, 53, 69, 0.9);
    color: #fff;
}

.status-badge.status-scheduled {
    background: rgba(23, 162, 184, 0.9);
    color: #fff;
}

/* Album Collections */
.music-collection {
    width: 100%;
}

.section-title {
    margin: 0 0 20px 0;
    font-size: 24px;
    font-weight: 600;
    color: #333;
}

/* ==========================================================================
   UPLOAD COMPONENTS
   ========================================================================== */

.upload-container,
.upload-wizard {
    background: var(--color-bg-card);
    border-radius: 8px;
    box-shadow: none;
    padding: 30px;
    margin: 0;
}

.upload-header {
    text-align: center;
    margin-bottom: 30px;
}

.upload-header h3 {
    margin: 0 0 10px 0;
    color: var(--color-text);
}

.upload-header p {
    margin: 0;
    color: var(--color-text-subtle);
}

.upload-dropzone {
    border: 2px dashed var(--color-border);
    border-radius: 8px;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.3s ease;
    background: var(--color-bg-card);
    cursor: pointer;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.upload-dropzone.dragover {
    border-color: var(--color-accent);
    background: rgba(168, 213, 186, 0.1);
}

.dropzone-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.dropzone-content i {
    font-size: 3rem;
    color: var(--color-accent);
}

.upload-separator {
    color: var(--color-text-subtle);
    font-size: 14px;
    margin: 10px 0;
}

/* Upload Steps */
.upload-steps,
.step-navigation {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

.upload-step-content {
    min-height: 400px;
    background: transparent !important;
}

.upload-step-content.hidden {
    display: none;
}

/* Metadata Form Styles */
.metadata-form-container {
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
    margin-top: 0 !important;
}

/* Removed duplicate .form-section - see forms.css for base definition and line 594/2316 for context-specific overrides */

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--color-text);
}

.form-control {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-size: 14px;
    background: var(--color-bg);
    color: var(--color-text);
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 2px rgba(168, 213, 186, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 80px;
}

/* Track Items and Drag & Drop */
.track-item {
    display: flex;
    align-items: center;
    padding: 15px;
    margin: 10px 0;
    background: var(--color-bg-card);
    border: 1px solid rgba(184,186,193,0.2);
    border-radius: 8px;
    cursor: move;
    transition: all 0.3s ease;
}

.track-item:hover {
    background: rgba(168, 213, 186, 0.1);
    border-color: var(--color-accent);
}

.track-item.dragging {
    opacity: 0.5;
    transform: rotate(5deg);
}

.track-number {
    width: 40px;
    height: 40px;
    background: var(--button-color, #90A4AE);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
}

.track-name {
    flex: 1;
    font-weight: 500;
    color: var(--color-text);
}

.track-duration {
    color: var(--color-text-subtle);
    margin-right: 15px;
    font-size: 0.9em;
}

.track-actions {
    margin-left: auto;
}

.track-edit-btn {
    background: #28a745;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.track-edit-btn:hover {
    background: #218838;
}

.track-reorder-section {
    margin-top: 30px;
    padding: 20px;
    background: var(--color-bg-card);
    border-radius: 8px;
    border: 1px solid rgba(184,186,193,0.2);
}

.track-reorder-section h4 {
    margin-bottom: 15px;
    color: var(--color-text);
}

.track-list {
    min-height: 100px;
}

/* Mood Sliders */
.mood-sliders {
    display: grid;
    gap: 15px;
}

.mood-slider {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mood-slider label {
    min-width: 120px;
    margin-bottom: 0;
}

.mood-range {
    flex: 1;
    height: 6px;
    border-radius: 3px;
    background: #e9ecef;
    outline: none;
    -webkit-appearance: none;
}

.mood-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--button-color, #90A4AE);
    cursor: pointer;
}

.mood-range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--button-color, #90A4AE);
    cursor: pointer;
    border: none;
}

.mood-value {
    min-width: 30px;
    text-align: center;
    font-weight: 600;
    color: var(--color-accent);
}

/* Artwork Upload */
.artwork-upload-container {
    border: 2px dashed #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: border-color 0.3s ease;
}

.artwork-upload-container:hover {
    border-color: var(--color-accent);
}

/* Removed duplicate .artwork-preview - see forms.css for base definition */

.crop-artwork-btn {
    background: var(--button-color, #90A4AE);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

.crop-artwork-btn:hover {
    background: #0078a8;
}

.help-text {
    color: #666;
    font-size: 12px;
    margin-top: 8px;
}

/* Album Tracks Section */
.album-tracks-section {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e9ecef;
}

.tracks-tabs {
    margin-top: 20px;
}

.tabs-nav {
    display: flex;
    border-bottom: 2px solid #e9ecef;
    margin-bottom: 20px;
}

.tabs-nav button {
    background: none;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    color: #666;
}

.tabs-nav button.active {
    color: var(--color-accent);
    border-bottom-color: #009de1;
}

.tabs-nav button:hover {
    color: var(--color-accent);
}

.tabs-content {
    min-height: 200px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.upload-type-choices {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.upload-type {
    background: var(--color-bg-card);
    border: 2px solid rgba(184,186,193,0.2);
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
}

.upload-type:hover {
    border-color: var(--color-accent);
    background: rgba(168, 213, 186, 0.1);
}

.upload-type.selected {
    border-color: var(--color-accent);
    background: rgba(79, 125, 243, 0.15);
}

.upload-type i {
    font-size: 3rem;
    color: var(--color-accent);
    margin-bottom: 15px;
    display: block;
}

.upload-type h5 {
    margin: 0 0 10px 0;
    color: var(--color-text);
    font-size: 18px;
    font-weight: 600;
}

.upload-type p {
    margin: 0;
    color: var(--color-text-subtle);
    font-size: 14px;
}

/* File Upload Items */
.file-upload-area {
    margin-top: 20px;
}

.uploaded-files {
    margin-top: 20px;
}

.file-item {
    background: var(--color-bg-card);
    border: 1px solid rgba(184,186,193,0.2);
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.file-item .file-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.file-item .file-icon {
    color: var(--color-accent);
    font-size: 20px;
}

.file-item .file-details {
    display: flex;
    flex-direction: column;
}

.file-item .file-name {
    font-weight: 500;
    color: var(--color-text);
}

.file-item .file-size {
    font-size: 12px;
    color: var(--color-text-subtle);
}

.file-item .filename {
    flex: 1;
    font-weight: 500;
    color: var(--color-text);
}

.file-item .progress {
    flex: 0 0 150px;
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.file-item .progress-bar {
    height: 100%;
    background: var(--button-color, #90A4AE);
    transition: width 0.3s ease, background-color 0.3s ease;
    width: 0%;
}

.file-item .progress-text {
    flex: 0 0 50px;
    text-align: right;
    font-size: 12px;
    color: #666;
}

.file-item .remove-file {
    flex: 0 0 auto;
    background: none;
    border: none;
    color: #dc3545;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.file-item .remove-file:hover {
    background: rgba(220, 53, 69, 0.1);
}

.file-item.upload-success .progress-bar {
    background: #28a745;
}

.file-item.upload-error {
    border-left: 4px solid #dc3545;
}

.file-item.upload-error .progress {
    background: rgba(220, 53, 69, 0.1);
}

.file-item .error-message {
    position: absolute;
    bottom: -20px;
    left: 15px;
    color: #dc3545;
    font-size: 12px;
}

/* ==========================================================================
   BUTTON COMPONENTS - Global reusable buttons
   ========================================================================== */

.action-button,
.btn,
.button {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    text-decoration: none !important;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    text-align: center;
    justify-content: center;
    font-size: 14px;
    line-height: 1.4;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Remove underlines from all nested elements within action buttons */
.action-button *,
.btn *,
.button *,
.action-button a,
.btn a,
.button a,
.action-button span,
.btn span,
.button span {
    text-decoration: none !important;
}

.action-button.delete-button,
.delete-button {
    background: rgba(0, 0, 0, 0.4) !important;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.action-button.delete-button:hover,
.delete-button:hover {
    background: rgba(0, 0, 0, 0.6) !important;
    border-color: rgba(255, 255, 255, 0.3);
}

/* Album edit delete button - match other buttons */
.form-actions .delete-album,
.form-actions .button-link-delete {
    background: #4a4a4a !important;
    color: #fff !important;
    border: none !important;
}

.form-actions .delete-album:hover,
.form-actions .button-link-delete:hover {
    background: #5a5a5a !important;
    color: #fff !important;
}

.action-button:hover,
.btn:hover,
.button:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    text-decoration: none !important;
}

.button-primary {
    background: #a8d5ba;
    color: #1a1a1a;
    border-color: #a8d5ba;
    text-decoration: none !important;
}

.button-primary:hover {
    background: #8fc5a8;
    border-color: #8fc5a8;
    color: #fff;
    text-decoration: none !important;
}

.button-primary *,
.button-primary i,
.button-primary svg,
.button-primary .icon {
    color: inherit;
    transition: color 0.2s ease;
}

.button-primary:hover *,
.button-primary:hover i,
.button-primary:hover svg,
.button-primary:hover .icon {
    color: #fff;
}

.button-secondary {
    background: #6c757d;
    color: #fff;
    border-color: #6c757d;
}

.button-secondary:hover {
    background: #5a6268;
    border-color: #545b62;
}

.button-success {
    background: #28a745;
    color: #fff;
    border-color: #28a745;
}

.button-success:hover {
    background: #218838;
    border-color: #1e7e34;
}

.button-danger {
    background: #dc3545;
    color: #fff;
    border-color: #dc3545;
}

.button-danger:hover {
    background: #c82333;
    border-color: #bd2130;
}

.button-warning {
    background: #ffc107;
    color: #212529;
    border-color: #ffc107;
}

.button-warning:hover {
    background: #e0a800;
    border-color: #d39e00;
}

.button-outline {
    background: transparent;
    color: var(--color-accent);
    border-color: var(--color-accent);
}

.button-outline:hover {
    background: var(--button-color, #90A4AE);
    color: #fff;
}

.button-small {
    padding: 6px 12px;
    font-size: 12px;
}

.button-large {
    padding: 15px 30px;
    font-size: 16px;
}

.button-disabled,
.button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

.browse-files {
    background: var(--button-color, #90A4AE);
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.browse-files:hover {
    background: var(--button-color-hover, #78909C);
}

.show-upload-tab,
#show-upload-empty {
    background: var(--button-color, #90A4AE);
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.show-upload-tab:hover,
#show-upload-empty:hover {
    background: #0056b3;
}

/* ==========================================================================
   STEP NAVIGATION COMPONENTS
   ========================================================================== */

.step,
.step-indicator {
    flex: 1;
    text-align: center;
    padding: 15px;
    margin: 0 5px;
    background: var(--color-bg-card);
    border-radius: 6px;
    position: relative;
    cursor: default;
    transition: all 0.3s ease;
}

.step::after,
.step-indicator::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    width: 40px;
    height: 2px;
    background: rgba(184,186,193,0.3);
    z-index: 1;
}

.step:last-child::after,
.step-indicator:last-child::after {
    display: none;
}

.step.active,
.step-indicator.active {
    background: var(--color-accent);
    color: #fff;
}

.step.completed,
.step-indicator.completed {
    background: #46b450;
    color: #fff;
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(184,186,193,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-subtle);
    margin: 0 auto 8px;
    font-weight: 600;
}

.step.active .step-number {
    background: var(--color-bg);
    color: var(--color-accent);
}

.step.completed .step-number {
    background: var(--color-bg);
    color: #46b450;
}

/* ==========================================================================
   LIST COMPONENTS
   ========================================================================== */

.component-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.component-list li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.component-list li:last-child {
    border-bottom: none;
}

/* ==========================================================================
   PREVIEW COMPONENTS
   ========================================================================== */

.preview-wrap {
    position: relative;
    background: var(--color-bg-card);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.preview-wrap:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.preview-thumbnail {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.preview-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.preview-content {
    padding: 15px;
}

.preview-title {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.preview-meta {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.preview-excerpt {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

/* ==========================================================================
   ALERT COMPONENTS
   ========================================================================== */

.alert {
    padding: 15px 20px;
    border-radius: 6px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border-color: #c3e6cb;
}

.alert-info {
    background: #d1ecf1;
    color: #0c5460;
    border-color: #bee5eb;
}

.alert-warning {
    background: #fff3cd;
    color: #856404;
    border-color: #ffeaa7;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border-color: #f5c6cb;
}

/* ==========================================================================
   LOADING COMPONENTS
   ========================================================================== */

.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.spinner {
    width: 32px;
    height: 32px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #009de1;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ==========================================================================
   MEDIA-SPECIFIC COMPONENTS (simplified from global cards)
   ========================================================================== */

/* Music Items - inherits from card */
.music-item {
    /* Inherits all styles from .card */
}

.music-grid {
    /* Inherits all styles from .content-grid .grid-auto */
}

.music-artwork {
    /* Inherits all styles from .card-artwork */
}

.music-details {
    /* Inherits all styles from .card-body */
}

.music-actions {
    /* Inherits all styles from .card-actions */
}

/* Media Items - inherits from card */
.media-card {
    /* Inherits all styles from .card */
}

.media-artwork {
    /* Inherits all styles from .card-artwork */
}

.media-details {
    /* Inherits all styles from .card-body */
}

.media-actions {
    /* Inherits all styles from .card-actions */
}

/* Upload Specific - inherits from global upload components */
.simuze-upload-wizard {
    /* Inherits all styles from .upload-wizard */
}

.simuze-upload-container {
    /* Inherits all styles from .upload-container */
}


/* ==========================================================================
   NO CONTENT STATES
   ========================================================================== */

.no-content,
.no-music,
.no-albums-message {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.no-content i,
.no-music i,
.no-albums-message i {
    font-size: 4rem;
    color: #ddd;
    margin-bottom: 20px;
    display: block;
}

.no-content h3,
.no-music h3,
.no-albums-message h3 {
    margin: 0 0 10px 0;
    color: #333;
}

.no-content p,
.no-music p,
.no-albums-message p {
    margin: 0 0 20px 0;
    color: #666;
} 

/* Genre Dropdown Styles */
.genre-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-bg-card);
    border: 1px solid rgba(184,186,193,0.2);
    border-top: none;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 0 0 4px 4px;
}

.genre-dropdown.hidden {
    display: none;
}

.genre-results {
    max-height: 150px;
    overflow-y: auto;
}

.genre-item {
    padding: 8px 12px;
    cursor: pointer;
    border-bottom: 1px solid rgba(184,186,193,0.2);
    transition: background-color 0.2s ease;
    color: var(--color-text);
}

.genre-item:hover {
    background-color: rgba(79, 125, 243, 0.1);
}

.genre-item:last-child {
    border-bottom: none;
}

.genre-name {
    font-weight: 500;
    color: var(--color-text);
}

.genre-count {
    color: var(--color-text-subtle);
    font-size: 0.9em;
    margin-left: 8px;
}

.genre-create {
    padding: 8px 12px;
    border-top: 1px solid rgba(184,186,193,0.2);
    background: var(--color-bg-card);
}

.create-genre-btn {
    background: none;
    border: none;
    color: #0073aa;
    cursor: pointer;
    text-decoration: underline;
    font-size: 0.9em;
}

.create-genre-btn:hover {
    color: #0056b3;
}

/* Tags System Styles */
.tag-display {
    margin-top: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tag {
    display: inline-flex;
    align-items: center;
    background: #e9ecef;
    color: #495057;
    padding: 4px 8px;
    border-radius: 16px;
    font-size: 0.85em;
    font-weight: 500;
    transition: all 0.2s ease;
}

.tag:hover {
    background: #dee2e6;
}

.remove-tag {
    background: none;
    border: none;
    color: #6c757d;
    cursor: pointer;
    margin-left: 6px;
    font-size: 1.1em;
    line-height: 1;
    padding: 0;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.remove-tag:hover {
    background: #dc3545;
    color: white;
}

/* Improved Mood Slider Styles */
.mood-sliders {
    display: grid;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.mood-slider {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mood-slider label {
    min-width: 140px;
    margin-bottom: 0;
    font-weight: 500;
    color: #495057;
}

.mood-range {
    flex: 1;
    height: 8px;
    border-radius: 4px;
    background: linear-gradient(to right, #e9ecef 0%, #e9ecef 100%);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mood-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #009de1, #0078a8);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 157, 225, 0.3);
    transition: all 0.2s ease;
}

.mood-range::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 157, 225, 0.4);
}

.mood-range::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #009de1, #0078a8);
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 157, 225, 0.3);
    transition: all 0.2s ease;
}

.mood-range::-moz-range-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 157, 225, 0.4);
}

.mood-value {
    min-width: 40px;
    text-align: center;
    font-weight: 600;
    color: var(--color-accent);
    background: white;
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid #e9ecef;
    font-size: 0.9em;
}

/* Album Level Fields */
.album-level-fields {
    background: #f8f9fa !important;
    border: 1px solid #e9ecef !important;
    border-radius: 8px !important;
    padding: 20px !important;
    margin-bottom: 20px !important;
    display: block !important;
    width: 100% !important;
}

.album-level-fields h4 {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    border-bottom: 2px solid #009de1;
    padding-bottom: 8px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.form-row .form-group {
    flex: 1;
}

.form-row .form-group small {
    display: block;
    margin-top: 5px;
    color: #6c757d;
    font-size: 12px;
}

.form-row button {
    margin-top: 20px;
}

/* Album Tracks Tab Styles */
.tracks-tabs {
    margin-top: 30px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
}

/* Left Tab Navigation for Upload Form */
.album-tracks-tabs {
    display: flex !important;
    border: 1px solid #e9ecef !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    background: white !important;
    width: 100% !important;
    margin-top: 20px !important;
}

.album-tracks-tabs .tabs-navigation {
    width: 250px !important;
    background: #f8f9fa !important;
    border-right: 1px solid #e9ecef !important;
    min-height: 400px !important;
    flex-shrink: 0 !important;
}

.album-tracks-tabs .tabs-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.album-tracks-tabs .tabs-navigation .tab-nav-item {
    padding: 15px 20px;
    border-bottom: 1px solid #e9ecef;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.album-tracks-tabs .tabs-navigation .tab-nav-item:hover {
    background: #e9ecef;
}

.album-tracks-tabs .tabs-navigation .tab-nav-item.active {
    background: var(--button-color, #90A4AE);
    color: white;
}

.album-tracks-tabs .tabs-navigation .tab-number {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8em;
    font-weight: 600;
}

.album-tracks-tabs .tabs-navigation .tab-title {
    font-size: 0.9em;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.album-tracks-tabs .tabs-content {
    flex: 1;
    padding: 20px;
    min-height: 400px;
}

.album-tracks-tabs .tab-content {
    display: none;
}

.album-tracks-tabs .tab-content.active {
    display: block;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .album-tracks-tabs {
        flex-direction: column;
    }
    
    .album-tracks-tabs .tabs-navigation {
        width: 100%;
        min-height: auto;
        border-right: none;
        border-bottom: 1px solid #e9ecef;
    }
    
    .album-tracks-tabs .tabs-navigation ul {
        display: flex;
        overflow-x: auto;
    }
    
    .album-tracks-tabs .tabs-navigation .tab-nav-item {
        border-bottom: none;
        border-right: 1px solid #e9ecef;
        min-width: 120px;
        flex-shrink: 0;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
}

/* Top Tab Navigation (Legacy) */
.tabs-nav {
    display: flex;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    overflow-x: auto;
}

.tabs-nav button {
    background: none;
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    color: #6c757d;
    font-weight: 500;
    white-space: nowrap;
    min-width: 120px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tabs-nav button:hover {
    color: var(--color-accent);
    background: #e9ecef;
}

.tabs-nav button.active {
    color: var(--color-accent);
    border-bottom-color: #009de1;
    background: white;
}

.track-number {
    background: var(--button-color, #90A4AE);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8em;
    font-weight: 600;
}

.track-name {
    font-size: 0.9em;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tabs-content {
    background: transparent !important;
    padding: 0 !important;
    min-height: 200px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Enhanced Form Styles */
.metadata-form-container {
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
    margin-top: 0 !important;
    box-shadow: none !important;
}

.form-section {
    margin-bottom: 35px;
}

.form-section h3 {
    color: #a8d5ba;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    border-bottom: 2px solid #a8d5ba;
    padding-bottom: 12px;
    position: relative;
}

.form-section h3::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--button-color, #90A4AE);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #fff;
    font-size: 0.95em;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #4a4a4a;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #2a2a2a !important;
    color: #fff !important;
}

.form-control:focus {
    outline: none;
    border-color: #a8d5ba;
    box-shadow: 0 0 0 2px rgba(168, 213, 186, 0.1);
    background: #2a2a2a !important;
    color: #fff !important;
}

.form-control:hover {
    border-color: var(--color-accent);
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

select.form-control {
    cursor: pointer;
}

/* Enhanced Artwork Upload */
.artwork-upload-container {
    border: 2px dashed #dee2e6;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.artwork-upload-container:hover {
    border-color: var(--color-accent);
    background: #f0f8ff;
}

/* Removed duplicate .artwork-preview - see forms.css for base definition */

.crop-artwork-btn {
    background: linear-gradient(135deg, #009de1, #0078a8);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 157, 225, 0.3);
}

.crop-artwork-btn:hover {
    background: linear-gradient(135deg, #0078a8, #005a7a);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 157, 225, 0.4);
}

.help-text {
    color: #6c757d;
    font-size: 0.9em;
    margin-top: 12px;
    font-style: italic;
}

/* Schedule Button Styles */
.schedule-upload {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.schedule-upload:hover {
    background: linear-gradient(135deg, #20c997, #17a2b8);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(40, 167, 69, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .metadata-form-container {
        padding: 20px;
    }
    
    .mood-slider {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .mood-slider label {
        min-width: auto;
    }
    
    .tabs-nav {
        flex-wrap: wrap;
    }
    
    .tabs-nav button {
        min-width: 100px;
        padding: 10px 15px;
    }
}

/* ==========================================================================
   GLOBAL BUTTON COLOR OVERRIDE - Light gray-blue for all buttons
   ========================================================================== */

/* Override all buttons with old blue colors to use light gray-blue */
button[style*="#007cba"],
button[style*="#005a87"],
button[style*="#009de1"],
button[style*="#0087c7"],
.button[style*="#007cba"],
.button[style*="#005a87"],
.button[style*="#009de1"],
.button[style*="#0087c7"],
.btn[style*="#007cba"],
.btn[style*="#005a87"],
.btn[style*="#009de1"],
.btn[style*="#0087c7"] {
    background: var(--button-color, #90A4AE) !important;
    border-color: var(--button-color, #90A4AE) !important;
}

button[style*="#007cba"]:hover,
button[style*="#005a87"]:hover,
button[style*="#009de1"]:hover,
button[style*="#0087c7"]:hover,
.button[style*="#007cba"]:hover,
.button[style*="#005a87"]:hover,
.button[style*="#009de1"]:hover,
.button[style*="#0087c7"]:hover,
.btn[style*="#007cba"]:hover,
.btn[style*="#005a87"]:hover,
.btn[style*="#009de1"]:hover,
.btn[style*="#0087c7"]:hover {
    background: var(--button-color-hover, #78909C) !important;
    border-color: var(--button-color-hover, #78909C) !important;
}

/* Override specific button classes with old blue colors */
.add-tracks-btn,
.add-to-playlist-btn,
.create-playlist-btn,
.create-playlist-btn-large,
.create-playlist-btn-full,
.upload-button,
.browse-files,
.next-step,
.prev-step,
.submit-upload,
.save-draft,
.update-draft,
.cancel-upload,
.form-button.primary,
.button.primary,
.btn-primary {
    background: var(--button-color, #90A4AE) !important;
    border-color: var(--button-color, #90A4AE) !important;
    color: #FFFFFF !important;
}

.add-tracks-btn:hover,
.add-to-playlist-btn:hover,
.create-playlist-btn:hover,
.create-playlist-btn-large:hover,
.create-playlist-btn-full:hover,
.upload-button:hover,
.browse-files:hover,
.next-step:hover,
.prev-step:hover,
.submit-upload:hover,
.save-draft:hover,
.update-draft:hover,
.cancel-upload:hover,
.form-button.primary:hover,
.button.primary:hover,
.btn-primary:hover {
    background: var(--button-color-hover, #78909C) !important;
    border-color: var(--button-color-hover, #78909C) !important;
}

/* Note: .view-all-btn styles are in layout.css to match dark "read more" button style */ 
/* ── Location type badge ──────────────────────────────────────────────── */
.location-type-badge {
    display:inline-block;
    font-size:.7rem;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:.08em;
    color:rgba(255,255,255,.55);
    margin-bottom:.35rem;
}

/* ── Event list (shared: homepage, /shows, city, province) ─────────────── */
.event-list { list-style:none; padding:0; margin:0; }
.event-list-item {
    display:flex; align-items:center; gap:.8rem;
    padding:.6rem 0;
    border-bottom:1px solid var(--color-border,#e5e7eb);
    position:relative; cursor:pointer; border-radius:4px; transition:background .12s;
}
.event-list-item:last-child { border-bottom:none; }
.event-list-item:hover { background:rgba(255,255,255,.04); }
.event-row-link { position:absolute; inset:0; z-index:0; display:block; border-radius:4px; }
.event-date-badge {
    min-width:52px; text-align:center;
    background:#1f2937; color:#fff;
    border-radius:6px; padding:.35rem .5rem; font-size:.72rem; line-height:1.15;
    flex-shrink:0; position:relative; z-index:1;
}
.event-date-badge .day { display:block; font-size:1.25rem; font-weight:700; line-height:1; }
.event-info { flex:1; min-width:0; position:relative; z-index:1; }
.event-title { font-size:1.05rem; font-weight:500; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; line-height:1.15; margin:0; padding:0; }
.event-meta { font-size:.8rem; color:var(--color-text-muted,#888); margin-top:0; line-height:1.25; }
.event-ticket-btn, .event-ticket-btn-light {
    margin-left:auto; white-space:nowrap; flex-shrink:0;
    position:relative; z-index:2;
    font-size:.8rem; color:var(--color-text-muted,#888); text-decoration:none;
}
.event-ticket-btn:hover, .event-ticket-btn-light:hover { color:#fff; }
.event-type-badge {
    font-size:.7rem; padding:.2rem .55rem; border-radius:20px;
    background:rgba(2,132,199,.12); color:#0284c7;
    text-transform:uppercase; letter-spacing:.04em; white-space:nowrap;
}
/* Compact past-events row */
.event-list-date { min-width:72px; font-size:.8rem; color:rgba(255,255,255,.45); white-space:nowrap; flex-shrink:0; position:relative; z-index:1; }
.event-list-title { color:#fff; text-decoration:none; font-size:.9rem; position:relative; z-index:1; }
.event-list-title:hover { text-decoration:underline; }
.event-list-item-past .event-list-title { color:rgba(255,255,255,.5); }
@media (max-width:600px) {
    .event-title { white-space:normal; }
    .event-date-badge { min-width:44px; }
}
.homepage-no-shows { text-align: center; padding: 32px 0; }
.homepage-event-list { margin-bottom: 8px; }
.homepage-network-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.homepage-network-header h3 { margin: 0; }
.view-all-link {
    font-size: 0.83rem;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
}
.view-all-link:hover { color: var(--color-accent, #a8d5ba); }

/* ── Show detail page ────────────────────────────────────────────────────── */
.event-page { padding: 0 24px 48px; max-width: 1100px; margin: 0 auto; }
.event-hero {
    padding: 40px 24px;
    margin-bottom: 32px;
    background: linear-gradient(135deg, #111318, #1a1d24);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.event-hero-inner { max-width: 1100px; margin: 0 auto; }
.event-meta-top { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.event-type-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-accent, #a8d5ba);
    font-weight: 600;
}
.event-city-link { font-size: 0.85rem; color: rgba(255,255,255,0.5); text-decoration: none; }
.event-city-link:hover { color: var(--color-accent, #a8d5ba); }
.event-title { font-size: 2rem; font-weight: 700; margin: 0 0 12px; color: #fff; }
.event-datetime { display: flex; gap: 16px; flex-wrap: wrap; font-size: 0.9rem; color: rgba(255,255,255,0.65); margin-bottom: 6px; }
.event-venue-line, .event-organiser-line { font-size: 0.9rem; color: rgba(255,255,255,0.55); margin-top: 4px; }
.event-organiser-line a { text-decoration: none; }
.event-organiser-line a:hover { color: var(--color-accent, #a8d5ba); }
.event-body { padding-top: 8px; }
.event-lineup-list { list-style: none; margin: 0; padding: 0; }
.lineup-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.lineup-item.pending .lineup-name { color: rgba(255,255,255,0.45); }
.lineup-name { font-weight: 600; text-decoration: none; color: #fff; }
.lineup-name:hover { color: var(--color-accent, #a8d5ba); }
.lineup-tbc { color: rgba(255,255,255,0.35); font-style: italic; }
.lineup-slot-type {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.35);
    margin-left: auto;
}
.lineup-settime { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.lineup-empty, .open-slots-notice { color: rgba(255,255,255,0.5); font-size: 0.9rem; }
.open-slots-notice a { color: var(--color-accent, #a8d5ba); }
.event-lineup-section, .event-description-section, .event-diy-notes, .event-slot-request { margin-bottom: 32px; }
.event-description, .event-notes-body { color: rgba(255,255,255,0.7); line-height: 1.7; font-size: 0.95rem; }
.event-sidebar {
    padding: 20px;
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.07);
}
.event-info-card { display: flex; flex-direction: column; gap: 8px; }
.event-info-row { display: flex; align-items: baseline; gap: 8px; font-size: 0.88rem; }
.event-info-label {
    min-width: 72px;
    color: rgba(255,255,255,0.4);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.event-status-badge { display: inline-block; padding: 2px 10px; border-radius: 999px; font-size: 0.78rem; font-weight: 600; }
.event-status-open { background: rgba(168,213,186,0.15); color: #a8d5ba; }
.event-status-confirmed { background: rgba(81,172,50,0.2); color: #51ac32; }
.event-status-lineup_set { background: rgba(255,200,100,0.15); color: #ffc864; }
.event-status-past { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.4); }
.event-status-cancelled { background: rgba(255,80,80,0.15); color: #ff5050; }
.event-sidebar-action { margin-top: 16px; }

/* ── City page ───────────────────────────────────────────────────────────── */
.city-page { padding: 0 24px 48px; max-width: 1100px; margin: 0 auto; }
.city-hero {
    padding: 40px 24px;
    margin-bottom: 32px;
    background: linear-gradient(135deg, #111318, #1a1d24);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.city-hero-inner { max-width: 1100px; margin: 0 auto; }
.city-hero h1 { font-size: 2.4rem; font-weight: 700; margin: 0 0 4px; color: #fff; }
.city-country { font-size: 0.9rem; color: rgba(255,255,255,0.45); margin: 0 0 16px; }
.city-stats { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 20px; font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.city-start-show-btn { display: inline-flex; align-items: center; gap: 8px; }
.city-section { margin-bottom: 40px; }
.venue-list { list-style: none; margin: 0; padding: 0; }
.venue-list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.9rem;
}
.venue-list-item:last-child { border-bottom: none; }
.venue-name { flex: 1; color: #fff; font-weight: 500; }
.venue-type-tag {
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 4px;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.45);
}
.venue-capacity { font-size: 0.78rem; color: rgba(255,255,255,0.3); }

/* ── Group shows section ─────────────────────────────────────────────────── */
.group-shows-section, .group-shows-empty { margin-top: 32px; }
.section-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.shows-subheading {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: rgba(255,255,255,0.4);
    margin: 16px 0 8px;
}

/* ── Admin badges ────────────────────────────────────────────────────────── */
.badge { display: inline-block; padding: 2px 8px; border-radius: 4px; font-size: 0.75rem; font-weight: 600; }
.badge-open { background: rgba(168,213,186,0.15); color: #a8d5ba; }
.badge-confirmed { background: rgba(81,172,50,0.2); color: #51ac32; }
.badge-lineup_set { background: rgba(255,200,100,0.15); color: #ffc864; }
.badge-past { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.4); }
.badge-cancelled { background: rgba(255,80,80,0.15); color: #ff5050; }
.badge-draft { background: rgba(255,255,255,0.04); color: rgba(255,255,255,0.3); }

/* ── No-content notice ───────────────────────────────────────────────────── */
.no-content-notice { color: rgba(255,255,255,0.4); font-size: 0.9rem; }
.no-content-notice a { color: var(--color-accent, #a8d5ba); }

/* ── Section header ──────────────────────────────────────────────────────── */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.section-header h2 { margin: 0; font-size: 1.2rem; }
