/**
 * Artist Details Modal Styles
 *
 * Design follows show_details modal pattern:
 * - Glass effect with blurred background image
 * - Full screen on mobile, centered modal on desktop
 * - Dark theme with design token variables
 *
 * Prefix: adm- (Artist Details Modal)
 */

/* ============================================
   MODAL OVERLAY & CONTAINER
   ============================================ */

.adm-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000; /* Base value - modalStackManager overrides dynamically */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.adm-overlay[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
}

.adm-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.adm-container {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 600px;
    max-height: 90vh;
    background: var(--bg-primary, #121212);
    border-radius: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: translateY(20px);
    transition: transform 0.25s ease;
}

.adm-overlay[aria-hidden="false"] .adm-container {
    transform: translateY(0);
}

/* Desktop: top-aligned modal with border radius, below sticky nav */
@media (min-width: 768px) {
    .adm-overlay {
        top: var(--desktop-nav-height, 48px); /* Start below sticky nav */
        align-items: flex-start;
        padding-top: 3vh;
    }

    .adm-container {
        height: auto;
        max-height: calc(100vh - var(--desktop-nav-height, 48px) - 6vh); /* Account for nav + padding */
        border-radius: var(--radius-xl, 16px);
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    }
}

.adm-content {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    /* Firefox scrollbar */
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

/* Chrome, Safari, Edge scrollbar */
.adm-content::-webkit-scrollbar {
    width: 6px;
}

.adm-content::-webkit-scrollbar-track {
    background: transparent;
}

.adm-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.adm-content::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* ============================================
   BACKGROUND WITH IMAGE EFFECT
   ============================================ */

.adm-artist-bg {
    position: relative;
    min-height: 100%;
    padding: var(--space-4, 16px);
}

/* Background image layer at 50% opacity */
.adm-artist-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--artist-bg-image);
    background-size: cover;
    background-position: center top;
    opacity: 0.5;
    z-index: 0;
}

/* Gradient overlay for readability */
.adm-artist-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    z-index: 1;
}

.adm-artist-bg > * {
    position: relative;
    z-index: 2;
}

/* ============================================
   HEADER BAR (Close & Share)
   ============================================ */

.adm-header-bar {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
    display: flex;
    justify-content: flex-end;
    gap: var(--space-2, 8px);
    padding: var(--space-3, 12px);
}

.adm-close-btn,
.adm-share-btn {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-secondary, #999);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-1, 4px);
    transition: background 0.15s ease, color 0.15s ease, width 0.15s ease, padding 0.15s ease;
}

.adm-close-btn:hover,
.adm-share-btn:hover {
    background: var(--bg-hover, rgba(255, 255, 255, 0.15));
    color: var(--text-primary, #fff);
}

.adm-close-btn svg,
.adm-share-btn svg {
    width: 20px;
    height: 20px;
}

/* Share button - check icon hidden by default */
.adm-share-btn .adm-check-icon {
    display: none;
}

/* Share label hidden by default */
.adm-share-label {
    display: none;
    font-size: 14px;
    font-weight: 500;
}

/* Share button copied state */
.adm-share-btn.copied {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    width: auto;
    padding: 0 12px;
    border-radius: 18px;
}

.adm-share-btn.copied .adm-share-icon {
    display: none;
}

.adm-share-btn.copied .adm-check-icon {
    display: block;
}

.adm-share-btn.copied .adm-share-label {
    display: inline;
}

/* ============================================
   ARTIST HEADER
   ============================================ */

.adm-artist-header {
    display: flex;
    gap: var(--space-4, 16px);
    margin-bottom: var(--space-4, 16px);
    padding-top: var(--space-8, 32px); /* Space for close/share buttons */
}

.adm-artist-image {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: var(--radius-xl, 16px);
    overflow: hidden;
    background: var(--bg-secondary, #1a1a1a);
}

.adm-artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.adm-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
}

.adm-image-placeholder span {
    color: var(--text-primary, #fff);
    font-size: 48px;
    font-weight: 600;
}

.adm-artist-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-2, 8px);
}

.adm-artist-name-row {
    display: flex;
    align-items: center;
    gap: var(--space-3, 12px);
}

.adm-artist-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary, #fff);
    margin: 0;
    line-height: 1.2;
}

/* Meta rows (location, next show) */
.adm-meta-row {
    display: flex;
    align-items: center;
    gap: var(--space-2, 8px);
    font-size: 14px;
    color: var(--text-secondary, #aaa);
}

.adm-meta-row.muted {
    color: var(--text-tertiary, #666);
}

.adm-meta-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.adm-show-date {
    color: var(--accent-primary, #1DB954);
    font-weight: 500;
}

.adm-show-at {
    color: var(--text-tertiary, #666);
}

.adm-show-venue {
    color: var(--text-secondary, #aaa);
}

.adm-header-ticket-link {
    text-decoration: none;
    color: inherit;
}

.adm-header-ticket-link:hover {
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ============================================
   ACTION BUTTONS
   ============================================ */

.adm-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2, 8px);
    margin-top: var(--space-2, 8px);
}

.adm-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 500;
    border-radius: var(--radius-lg, 12px);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s ease, transform 0.1s ease;
    white-space: nowrap;
}

.adm-btn:active {
    transform: scale(0.97);
}

.adm-btn-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Play button - Grey glass */
.adm-play-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: var(--text-primary, #fff);
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.15s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.adm-play-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
}

.adm-play-btn.playing {
    background: rgba(29, 185, 84, 0.25);
    border-color: rgba(29, 185, 84, 0.4);
    color: #1DB954;
}

.adm-play-btn.error {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.4);
    color: #ef4444;
    cursor: not-allowed;
}

.adm-play-btn svg {
    width: 14px;
    height: 14px;
}

/* Play icon - slight offset for visual centering */
.adm-play-btn .adm-icon-play {
    margin-left: 2px;
}

/* Pause icon - hidden by default */
.adm-play-btn .adm-icon-pause {
    display: none;
}

/* Playing state - swap icon visibility */
.adm-play-btn.playing .adm-icon-play {
    display: none;
}

.adm-play-btn.playing .adm-icon-pause {
    display: flex;
}

/* Full Songs button - Grey glass */
.adm-video-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg, 12px);
    color: var(--text-primary, #fff);
    cursor: pointer;
    text-decoration: none;
    flex-shrink: 0;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.15s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.adm-video-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
}

.adm-video-btn svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* Soundcheck button - Green glass */
.adm-soundcheck-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(29, 185, 84, 0.25);
    border: 1px solid rgba(29, 185, 84, 0.4);
    border-radius: var(--radius-lg, 12px);
    color: #1DB954;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.15s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.adm-soundcheck-btn:hover {
    background: rgba(29, 185, 84, 0.35);
    border-color: rgba(29, 185, 84, 0.6);
}

.adm-soundcheck-btn svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* ============================================
   SECTIONS (Glass cards)
   ============================================ */

.adm-section {
    background: rgba(30, 30, 30, 0.6);
    border-radius: var(--radius-xl, 16px);
    padding: var(--space-4, 16px);
    margin-bottom: var(--space-4, 16px);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.adm-section-title {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-tertiary, #888);
    margin: 0 0 var(--space-3, 12px);
}

/* Section header with title and action button */
.adm-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-3, 12px);
}

.adm-section-header .adm-section-title {
    margin: 0;
}

/* Explore button (for SoundMap link) */
.adm-explore-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    height: 26px;
    padding: 0 10px;
    background: var(--bg-tertiary, #2a2a2a);
    border: 1px solid var(--border-primary, #333);
    border-radius: 13px;
    color: var(--text-secondary, #999);
    cursor: pointer;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.15s ease;
}

.adm-explore-btn:hover {
    background: rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.4);
    color: #667eea;
}

.adm-explore-btn svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

/* Trophy icon in Notable section */
.adm-trophy-icon {
    width: 14px;
    height: 14px;
    margin-right: var(--space-1, 4px);
    vertical-align: -2px;
    color: #f59e0b;
}

/* Notable section special styling */
.adm-section.adm-notable {
    background: linear-gradient(135deg, rgba(120, 53, 15, 0.85) 0%, rgba(80, 35, 10, 0.85) 100%);
    border: 1px solid rgba(245, 158, 11, 0.4);
}

.adm-section.adm-notable .adm-section-title {
    color: #f59e0b;
}

.adm-section.adm-notable p {
    color: var(--text-primary, #fff);
}

/* ============================================
   GENRE STYLES
   ============================================ */

.adm-genre-content {
    font-size: 14px;
    color: var(--text-primary, #fff);
}

.adm-genre-line {
    margin-bottom: var(--space-2, 8px);
}

.adm-genre-line:last-of-type {
    margin-bottom: var(--space-3, 12px);
}

.adm-genre-arrow {
    color: var(--text-tertiary, #666);
    margin: 0 4px;
}

.adm-genre-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2, 8px);
    margin-top: var(--space-2, 8px);
}

.adm-genre-tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-secondary, #aaa);
    padding: 4px 12px;
    border-radius: var(--radius-full, 9999px);
    font-size: 12px;
}

/* ============================================
   BIO STYLES
   ============================================ */

.adm-bio-content p,
.adm-notable-content p,
.adm-background-content p {
    margin: 0 0 var(--space-3, 12px) 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary, #aaa);
}

.adm-bio-content p:last-child,
.adm-notable-content p:last-child,
.adm-background-content p:last-child {
    margin-bottom: 0;
}

/* ============================================
   SHOWS LIST
   ============================================ */

.adm-shows-content {
    font-size: 14px;
}

.adm-shows-subsection {
    margin-bottom: var(--space-4, 16px);
}

.adm-shows-subsection:last-child {
    margin-bottom: 0;
}

.adm-shows-subsection-past {
    padding-top: var(--space-3, 12px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.adm-shows-subsection-title {
    margin: 0 0 var(--space-2, 8px) 0;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary, #fff);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.adm-shows-subsection-title.muted {
    color: var(--text-tertiary, #666);
}

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

.adm-show-item {
    display: flex;
    align-items: center;
    gap: var(--space-2, 8px);
    padding: var(--space-1, 4px) 0;
    color: var(--text-secondary, #aaa);
}

.adm-show-item.hidden {
    display: none;
}

/* Show row link */
.adm-show-row-link {
    display: flex;
    align-items: center;
    gap: var(--space-2, 8px);
    flex: 1;
    min-width: 0;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.adm-show-row-link:hover {
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Show icons */
.adm-show-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: var(--accent-primary, #1DB954);
}

.adm-show-icon.muted {
    color: var(--text-tertiary, #666);
}

.adm-show-bullet {
    flex-shrink: 0;
    width: 14px;
    text-align: center;
    color: var(--text-tertiary, #666);
}

.adm-show-item .adm-show-date {
    color: var(--accent-primary, #1DB954);
    font-weight: 500;
}

.adm-show-past .adm-show-date {
    color: var(--text-secondary, #aaa);
}

.adm-show-item .adm-show-at {
    color: var(--text-tertiary, #666);
}

.adm-show-item .adm-show-venue {
    color: var(--text-secondary, #aaa);
}

.adm-show-past {
    opacity: 0.7;
}

/* Calendar button in show row */
.adm-show-calendar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    padding: 4px;
    background: none;
    border: none;
    color: var(--text-tertiary, #666);
    cursor: pointer;
    border-radius: var(--radius-sm, 4px);
    transition: color 0.15s ease, background 0.15s ease;
}

.adm-show-calendar-btn:hover {
    color: var(--accent-primary, #1DB954);
    background: rgba(255, 255, 255, 0.1);
}

.adm-show-calendar-btn svg {
    width: 16px;
    height: 16px;
}

/* Show more button */
.adm-show-more-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: var(--space-2, 8px);
    padding: var(--space-2, 8px) 0;
    background: none;
    border: none;
    color: var(--accent-primary, #1DB954);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.15s ease;
}

.adm-show-more-btn:hover {
    color: #1ed760;
}

.adm-show-more-btn::before {
    content: '\25BC'; /* Down arrow */
    font-size: 10px;
}

.adm-show-more-btn.expanded::before {
    content: '\25B2'; /* Up arrow */
}

/* ============================================
   CO-ARTISTS LIST
   ============================================ */

.adm-coartists-content {
    font-size: 14px;
}

.adm-coartists-list {
    margin: 0;
    padding: 0;
}

/* Wrapper for artist cards - no styling, just for show/hide */
.adm-coartist-item.hidden {
    display: none;
}

/* Similar Artists section */
.adm-similar-artist-wrapper.hidden {
    display: none;
}

/* Legacy styles below - kept for backwards compatibility but now handled by artist-card component */
.adm-coartist-name {
    color: var(--text-primary, #fff);
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.adm-coartist-meta {
    font-size: 12px;
    color: var(--text-tertiary, #666);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ============================================
   SOCIAL LINKS
   ============================================ */

.adm-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2, 8px);
}

.adm-social-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2, 8px);
    padding: var(--space-2, 8px) var(--space-3, 12px);
    background: var(--bg-secondary, #1a1a1a);
    border: 1px solid var(--border-primary, #333);
    border-radius: var(--radius-lg, 12px);
    color: var(--text-secondary, #aaa);
    text-decoration: none;
    font-size: 14px;
    transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.adm-social-link:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary, #fff);
}

.adm-social-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Brand icons from Simple Icons CDN */
.adm-social-icon.brand-icon {
    width: 16px;
    height: 16px;
}

.adm-social-label {
    font-weight: 500;
}

/* ============================================
   LOADING STATE
   ============================================ */

.adm-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    color: var(--text-tertiary, #888);
}

.adm-loading::after {
    content: '';
    width: 32px;
    height: 32px;
    border: 2px solid currentColor;
    border-top-color: transparent;
    border-radius: 50%;
    animation: adm-spin 0.8s linear infinite;
}

@keyframes adm-spin {
    to {
        transform: rotate(360deg);
    }
}

/* Error state */
.adm-error {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    color: var(--text-tertiary, #888);
    font-size: 14px;
}

/* ============================================
   CALENDAR DROPDOWN (Desktop)
   ============================================ */

.adm-calendar-dropdown {
    position: fixed;
    display: none;
    flex-direction: column;
    background: var(--bg-secondary, #1a1a1a);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg, 12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    z-index: 10003; /* Above artist modal overlay */
    min-width: 180px;
    padding: 4px;
}

.adm-calendar-dropdown.active {
    display: flex;
}

.adm-calendar-option {
    display: flex;
    align-items: center;
    gap: var(--space-2, 8px);
    padding: 10px 12px;
    background: none;
    border: none;
    color: var(--text-primary, #fff);
    font-size: 13px;
    text-align: left;
    cursor: pointer;
    border-radius: var(--radius-md, 8px);
    transition: background 0.15s ease;
}

.adm-calendar-option:hover {
    background: rgba(255, 255, 255, 0.1);
}

.adm-calendar-option svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* ============================================
   CALENDAR BOTTOM SHEET (Mobile)
   ============================================ */

.adm-calendar-sheet-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10003; /* Above artist modal overlay */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.adm-calendar-sheet-overlay.active {
    opacity: 1;
    visibility: visible;
}

.adm-calendar-sheet {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-secondary, #1a1a1a);
    border-radius: var(--radius-xl, 16px) var(--radius-xl, 16px) 0 0;
    padding: var(--space-4, 16px);
    padding-bottom: calc(var(--space-6, 24px) + env(safe-area-inset-bottom, 0px));
    z-index: 10004; /* Above calendar sheet overlay */
    transform: translateY(100%);
    transition: transform 0.25s ease;
}

.adm-calendar-sheet.active {
    transform: translateY(0);
}

.adm-calendar-sheet-handle {
    width: 36px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    margin: 0 auto var(--space-4, 16px);
}

.adm-calendar-sheet-header {
    margin-bottom: var(--space-4, 16px);
}

.adm-calendar-sheet-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary, #fff);
}

.adm-calendar-sheet-show {
    margin: 4px 0 0;
    font-size: 14px;
    color: var(--text-secondary, #aaa);
}

.adm-calendar-sheet-options {
    display: flex;
    flex-direction: column;
    gap: var(--space-2, 8px);
    margin-bottom: var(--space-4, 16px);
}

.adm-calendar-sheet-option {
    display: flex;
    align-items: center;
    gap: var(--space-3, 12px);
    padding: var(--space-4, 16px);
    background: var(--bg-tertiary, #2a2a2a);
    border: 1px solid var(--border-primary, #333);
    border-radius: var(--radius-lg, 12px);
    color: var(--text-primary, #fff);
    font-size: 16px;
    text-align: left;
    cursor: pointer;
    transition: background 0.15s ease;
}

.adm-calendar-sheet-option:hover {
    background: rgba(255, 255, 255, 0.1);
}

.adm-calendar-sheet-cancel {
    width: 100%;
    padding: var(--space-3, 12px);
    background: none;
    border: 1px solid var(--border-primary, #333);
    border-radius: var(--radius-lg, 12px);
    color: var(--text-secondary, #aaa);
    font-size: 16px;
    cursor: pointer;
    transition: background 0.15s ease;
}

.adm-calendar-sheet-cancel:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Hide dropdown on mobile, show sheet */
@media (max-width: 768px) {
    .adm-calendar-dropdown {
        display: none !important;
    }
}

/* Hide sheet on desktop */
@media (min-width: 769px) {
    .adm-calendar-sheet,
    .adm-calendar-sheet-overlay {
        display: none !important;
    }
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */

@media (max-width: 767px) {
    .adm-container {
        max-height: 100%;
        border-radius: 0;
    }

    /* Add padding at bottom for mobile nav bar */
    .adm-artist-bg {
        padding-bottom: calc(var(--space-4, 16px) + 52px + env(safe-area-inset-bottom, 34px));
    }

    .adm-artist-image {
        width: 100px;
        height: 100px;
    }

    .adm-artist-name {
        font-size: 20px;
    }

    .adm-actions {
        gap: 6px;
    }

    .adm-play-btn {
        width: 28px;
        height: 28px;
    }

    .adm-video-btn {
        padding: 6px 10px;
        font-size: 12px;
    }

    .adm-soundcheck-btn {
        padding: 6px 10px;
        font-size: 12px;
    }

    .adm-explore-btn {
        height: 24px;
        padding: 0 8px;
        font-size: 11px;
    }
}

/* ============================================
   BODY SCROLL LOCK
   ============================================ */

body.adm-open {
    overflow: hidden;
}
