/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a202c;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Navigation */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-brand h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #6366f1;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    text-decoration: none;
    color: #64748b;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #6366f1;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Buttons */
.btn {
    padding: 0.875rem 1.75rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9rem;
    letter-spacing: 0.025em;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

/* Save button rainbow animation */
.btn-save-success {
    animation: save-rainbow 0.8s ease-in-out;
    transform: scale(1.1);
}

@keyframes save-rainbow {
    0% {
        background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57, #ff9ff3, #ff6b6b);
        background-size: 400% 400%;
        transform: scale(1);
    }
    25% {
        background: linear-gradient(45deg, #4ecdc4, #45b7d1, #96ceb4, #feca57, #ff9ff3, #ff6b6b, #4ecdc4);
        background-size: 400% 400%;
        transform: scale(1.15);
    }
    50% {
        background: linear-gradient(45deg, #45b7d1, #96ceb4, #feca57, #ff9ff3, #ff6b6b, #4ecdc4, #45b7d1);
        background-size: 400% 400%;
        transform: scale(1.2);
    }
    75% {
        background: linear-gradient(45deg, #96ceb4, #feca57, #ff9ff3, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
        background-size: 400% 400%;
        transform: scale(1.15);
    }
    100% {
        background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57, #ff9ff3, #ff6b6b);
        background-size: 400% 400%;
        transform: scale(1.1);
    }
}

.btn-secondary {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(245, 87, 108, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #e83e8c 0%, #f5576c 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 87, 108, 0.5);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.9);
    color: #667eea;
    border: 2px solid #667eea;
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.btn-danger {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.btn-danger:hover {
    background: linear-gradient(135deg, #ff5252 0%, #e84343 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

/* Main Content */
.main-content {
    margin-top: 70px;
    min-height: calc(100vh - 70px);
}

.page {
    display: none;
    padding: 2rem 0;
}

.page.active {
    display: block;
}

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.page-header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.15)"/><circle cx="10" cy="50" r="0.5" fill="rgba(255,255,255,0.15)"/><circle cx="90" cy="30" r="0.5" fill="rgba(255,255,255,0.15)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.025em;
}

.hero p {
    font-size: 1.375rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Features Section */
.features {
    padding: 4rem 0;
    background: white;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1e293b;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    background: #f8fafc;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.feature-card p {
    color: #64748b;
}

/* Events Grid */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

/* Lineup List */
.lineup-list {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.lineup-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0.75rem;
    background: #f8fafc;
    border-radius: 4px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    min-height: 50px;
}

.lineup-list-item:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

.band-info {
    flex: 1;
    min-width: 0;
}

.band-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.review-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 250px;
}

/* Previous Review Display */
.previous-review {
    padding: 0.25rem 0.5rem;
    background: white;
    border-radius: 4px;
    border: 1px solid #e2e8f0;
}

.review-display {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.rating-badge {
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.875rem;
    text-transform: uppercase;
}

.rating-badge.rating-plus-plus {
    background: #dcfce7;
    color: #16a34a;
}

.rating-badge.rating-plus {
    background: #f0fdf4;
    color: #22c55e;
}

.rating-badge.rating-neutral {
    background: #fef3c7;
    color: #d97706;
}

.rating-badge.rating-minus {
    background: #fee2e2;
    color: #ef4444;
}

.rating-badge.rating-minus-minus {
    background: #fecaca;
    color: #dc2626;
}

.review-display .review-text {
    color: #374151;
    font-style: italic;
    font-size: 0.8rem;
    line-height: 1.3;
}

/* Inline Review Form */
.inline-review-form {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.rating-input {
    flex-shrink: 0;
}

.rating-buttons {
    display: flex;
    gap: 0.25rem;
}

.rating-btn-small {
    padding: 0.375rem 0.5rem;
    border: 2px solid #e2e8f0;
    background: white;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.75rem;
    transition: all 0.2s ease;
    min-width: 35px;
    text-align: center;
}

.rating-btn-small:hover {
    border-color: #6366f1;
}

.rating-btn-small.selected {
    background: #6366f1;
    color: white;
    border-color: #6366f1;
}

/* Specific rating color classes */
.rating-btn-small.rating-color-minusminus {
    background: #dc2626 !important;
    border-color: #dc2626 !important;
    color: white !important;
}

.rating-btn-small.rating-color-minus {
    background: #ef4444 !important;
    border-color: #ef4444 !important;
    color: white !important;
}

.rating-btn-small.rating-color-plusminus {
    background: #f59e0b !important;
    border-color: #f59e0b !important;
    color: white !important;
}

.rating-btn-small.rating-color-plus {
    background: #22c55e !important;
    border-color: #22c55e !important;
    color: white !important;
}

.rating-btn-small.rating-color-plusplus {
    background: #16a34a !important;
    border-color: #16a34a !important;
    color: white !important;
}

.rating-btn-small.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f1f5f9;
    color: #94a3b8;
    border-color: #e2e8f0;
}

.rating-btn-small.disabled:hover {
    background: #f1f5f9;
    border-color: #e2e8f0;
}

/* Rating button color classes for selected state - higher specificity */
.rating-btn-small.rating-btn-minusminus.selected,
.rating-btn-small.rating-btn-minus.selected,
.rating-btn-small.rating-btn-plusminus.selected,
.rating-btn-small.rating-btn-plus.selected,
.rating-btn-small.rating-btn-plusplus.selected {
    color: white;
}

.rating-btn-small.rating-btn-minusminus.selected {
    background: #dc2626 !important;
    border-color: #dc2626 !important;
}

.rating-btn-small.rating-btn-minus.selected {
    background: #ef4444 !important;
    border-color: #ef4444 !important;
}

.rating-btn-small.rating-btn-plusminus.selected {
    background: #f59e0b !important;
    border-color: #f59e0b !important;
}

.rating-btn-small.rating-btn-plus.selected {
    background: #22c55e !important;
    border-color: #22c55e !important;
}

.rating-btn-small.rating-btn-plusplus.selected {
    background: #16a34a !important;
    border-color: #16a34a !important;
}

.review-input {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex: 1;
}

.review-text-input {
    flex: 1;
    padding: 0.375rem 0.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    font-size: 0.8rem;
    transition: border-color 0.2s ease;
    height: 32px;
    min-width: 300px;
}

.review-text-input:focus {
    outline: none;
    border-color: #6366f1;
}

/* Others Count */
.others-count {
    margin-top: 0.5rem;
}

/* Event Tabs */
.event-tabs-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-top: 1rem;
}

.event-tabs-header {
    display: flex;
    align-items: center;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 0.5rem 1rem;
    gap: 0.5rem;
    overflow-x: auto;
}

.event-tabs-list {
    display: flex;
    flex: 1;
    gap: 2px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.event-tabs-list::-webkit-scrollbar {
    display: none;
}

.event-tab {
    background: #e2e8f0;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px 6px 0 0;
    font-weight: 600;
    font-size: 0.875rem;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    min-width: 120px;
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.event-tab:hover {
    background: #cbd5e1;
    color: #475569;
}

.event-tab.active {
    background: white;
    color: #1e293b;
    border-bottom: 2px solid #6366f1;
    transform: translateY(1px);
}

.event-content {
    padding: 2rem;
    min-height: 600px;
}

.event-detail-view {
    display: none;
}

.event-detail-view.active {
    display: block;
}

/* Event Tab Enhancements */
.event-tab .tab-date {
    font-size: 0.75rem;
    color: #94a3b8;
    margin-top: 0.25rem;
    display: block;
}

.event-tab.active .tab-date {
    color: #6366f1;
}

/* Mobile responsive for event tabs */
@media (max-width: 768px) {
    .event-tabs-header {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .event-tabs-list {
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .event-tab {
        min-width: 100px;
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }

    .event-tab .tab-name {
        font-size: 0.75rem;
    }

    .event-tab .tab-date {
        font-size: 0.7rem;
    }

    .event-content {
        padding: 1rem;
    }

    /* Mobile responsive for lineup list */
    .lineup-list-item {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        padding: 1rem;
    }

    .band-info {
        text-align: center;
    }

    .review-section {
        min-width: auto;
        width: 100%;
    }

    .inline-review-form {
        flex-direction: column;
        gap: 0.75rem;
        align-items: stretch;
    }

    .rating-input {
        align-self: center;
    }

    .review-input {
        justify-content: center;
    }

    .review-text-input {
        flex: 1;
        min-width: 200px;
    }

    .previous-review {
        text-align: center;
    }

    .review-display {
        justify-content: center;
        flex-wrap: wrap;
    }
}

.event-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.event-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(102, 126, 234, 0.2);
}

.event-card:hover::before {
    opacity: 1;
}

.event-card {
    position: relative;
}

.event-delete-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
    z-index: 20;
    opacity: 0.8;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
}

.event-delete-btn:hover {
    background: linear-gradient(135deg, #ff5252 0%, #e84343 100%);
    opacity: 1;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.5);
}

.event-delete-btn:active {
    transform: translateY(0) scale(1);
}

.event-date {
    color: #64748b;
    font-size: 0.875rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 1.25rem;
    background: rgba(102, 126, 234, 0.1);
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.event-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #1e293b;
    line-height: 1.3;
    letter-spacing: -0.025em;
}

.event-location {
    color: #64748b;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.event-stats {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

.event-stats span {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    background: rgba(102, 126, 234, 0.08);
    padding: 0.375rem 0.75rem;
    border-radius: 16px;
    border: 1px solid rgba(102, 126, 234, 0.15);
}

/* Reviews Feed */
.reviews-feed {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.review-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.review-info h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.review-meta {
    font-size: 0.875rem;
    color: #64748b;
}

.review-rating {
    font-size: 1.5rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    background: #f1f5f9;
}

.review-rating.positive {
    background: #dcfce7;
    color: #16a34a;
}

.review-rating.negative {
    background: #fee2e2;
    color: #dc2626;
}

.review-rating.neutral {
    background: #fef3c7;
    color: #d97706;
}

.review-text {
    color: #374151;
    line-height: 1.6;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    animation: slideIn 0.3s ease;
    overflow: hidden;
}

/* Make review modal wider for better quick review experience */
#review-modal .modal-content {
    max-width: 700px;
}

.modal-content.modal-wide {
    max-width: 900px;
    width: 95%;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    flex-shrink: 0;
    position: sticky;
    top: 0;
    background: white;
    border-radius: 12px 12px 0 0;
    z-index: 10;
}

.modal-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #64748b;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.modal-close:hover {
    background: #f1f5f9;
    color: #374151;
}

.modal-body {
    padding: 1.5rem;
    overflow-y: auto;
    flex: 1;
    min-height: 0;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #6366f1;
}

.auth-switch {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.auth-switch a {
    color: #6366f1;
    text-decoration: none;
    font-weight: 500;
}

/* Loading Spinner */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #e2e8f0;
    border-top: 4px solid #6366f1;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    top: 90px;
    right: 1rem;
    z-index: 2500;
}

.toast {
    background: white;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin-bottom: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-left: 4px solid #6366f1;
    animation: slideInRight 0.3s ease;
    max-width: 300px;
}

.toast.success {
    border-left-color: #10b981;
}

.toast.error {
    border-left-color: #ef4444;
}

.toast.warning {
    border-left-color: #f59e0b;
}

/* Lineup Input Container */
.lineup-input-container {
    position: relative;
}

.lineup-input-container textarea {
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.lineup-input-container.processing textarea {
    opacity: 0.6;
    pointer-events: none;
    background: #f8fafc;
}

.lineup-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 0.5rem;
}

.btn-ai {
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57, #ff9ff3);
    background-size: 300% 300%;
    animation: rainbow 3s ease infinite;
    color: white;
    border: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-ai:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-ai.processing {
    animation: rainbow-fast 1s ease infinite;
    transform: scale(1.05);
}

.ai-icon {
    font-size: 1.1em;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes rainbow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes rainbow-fast {
    0% { background-position: 0% 50%; }
    25% { background-position: 25% 50%; }
    50% { background-position: 50% 50%; }
    75% { background-position: 75% 50%; }
    100% { background-position: 100% 50%; }
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.1) rotate(5deg); }
    75% { transform: scale(0.9) rotate(-5deg); }
}

/* AI Processing Overlay */
.ai-processing-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    z-index: 10;
    animation: fadeIn 0.3s ease;
}

.ai-processing-content {
    text-align: center;
    padding: 2rem;
}

.ai-processing-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: rainbow-pulse 2s ease-in-out infinite;
}

.ai-processing-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.ai-processing-subtext {
    color: #64748b;
    font-size: 0.875rem;
}

@keyframes rainbow-pulse {
    0%, 100% {
        color: #ff6b6b;
        transform: scale(1);
    }
    25% {
        color: #4ecdc4;
        transform: scale(1.1);
    }
    50% {
        color: #45b7d1;
        transform: scale(1.05);
    }
    75% {
        color: #96ceb4;
        transform: scale(1.15);
    }
}

/* Lineup Section */
.lineup-section {
    margin-top: 2rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.section-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.lineup-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

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

.band-card {
    background: white;
    border-radius: 8px;
    padding: 1.25rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.band-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.band-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.band-header h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
    flex: 1;
}

.band-rating {
    font-size: 0.875rem;
    font-weight: 500;
    color: #64748b;
    background: #f1f5f9;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    white-space: nowrap;
}

.band-stage,
.band-time {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.band-stats {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 1rem;
}

.band-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.band-actions .btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    flex: 1;
    min-width: 120px;
}

/* Event Detail */
.event-info {
    background: white;
    border-radius: 12px;
    margin: 12px 0;
}

.event-header {
    margin-bottom: 1.5rem;
}

.event-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.event-meta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: #64748b;
    margin-top: 0.5rem;
}

.event-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.meta-label {
    font-weight: 600;
    color: #475569;
    min-width: 80px;
}

.meta-value {
    color: #334155;
    font-weight: 500;
}

.event-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #374151;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid #6366f1;
}

/* PDF Upload */
.pdf-upload-area {
    border: 2px dashed #e2e8f0;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.pdf-upload-area:hover {
    border-color: #6366f1;
    background: #f1f5f9;
}

.pdf-upload-area.dragover {
    border-color: #6366f1;
    background: #eef2ff;
}

.pdf-upload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.pdf-upload-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.pdf-upload-area p {
    font-weight: 500;
    color: #374151;
    margin: 0;
}

.pdf-upload-area small {
    color: #64748b;
    font-size: 0.875rem;
}

.processing-indicator {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f1f5f9;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.spinner-small {
    width: 20px;
    height: 20px;
    border: 2px solid #e2e8f0;
    border-top: 2px solid #6366f1;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.pdf-success {
    padding: 1rem;
    background: #dcfce7;
    border: 1px solid #16a34a;
    border-radius: 8px;
    color: #15803d;
}

.pdf-success h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
}

.pdf-success p {
    margin: 0 0 1rem 0;
    font-size: 0.875rem;
}

.pdf-bands-preview {
    max-height: 150px;
    overflow-y: auto;
    background: white;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    padding: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.4;
    color: #374151;
}

/* Rating Buttons */
.rating-buttons {
    display: flex;
    gap: 0.5rem;
    margin: 1rem 0;
}

.rating-btn {
    padding: 0.5rem 1rem;
    border: 2px solid #e2e8f0;
    background: white;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.rating-btn:hover {
    border-color: #6366f1;
}

.rating-btn.active {
    background: #6366f1;
    color: white;
    border-color: #6366f1;
}

.rating-btn.positive {
    border-color: #10b981;
    color: #10b981;
}

.rating-btn.positive.active {
    background: #10b981;
    color: white;
}

.rating-btn.negative {
    border-color: #ef4444;
    color: #ef4444;
}

.rating-btn.negative.active {
    background: #ef4444;
    color: white;
}

.rating-btn.neutral {
    border-color: #f59e0b;
    color: #f59e0b;
}

.rating-btn.neutral.active {
    background: #f59e0b;
    color: white;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: flex;
        align-items: center;
        gap: 1.5rem;
    }

    .nav-toggle {
        display: none;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .features h2 {
        font-size: 2rem;
    }

    .page-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .page-header h1 {
        font-size: 1.5rem;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        width: 95%;
        margin: 1rem;
    }

    .rating-buttons {
        flex-wrap: wrap;
    }

    .toast-container {
        right: 0.5rem;
        left: 0.5rem;
    }

    .toast {
        max-width: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }

    .hero {
        padding: 2rem 0;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .features {
        padding: 2rem 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }

    .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }
}

/* Dark mode support (for future enhancement) */
@media (prefers-color-scheme: dark) {
    /* Dark mode styles can be added here in future versions */
}

/* Event Creation Steps */
.event-step {
    transition: all 0.3s ease;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin-top: 1.5rem;
}

.form-actions .btn {
    flex: 1;
}

/* Rating Buttons Enhancement */
.rating-buttons {
    display: flex;
    gap: 0.5rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.rating-btn {
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    min-width: 60px;
    text-align: center;
}

.rating-btn:hover {
    border-color: #6366f1;
    transform: translateY(-1px);
}

.rating-btn.selected {
    background: #6366f1;
    color: white;
    border-color: #6366f1;
}

.rating-btn[data-rating="++"],
.rating-btn[data-rating="+"] {
    border-color: #10b981;
    color: #10b981;
}

.rating-btn[data-rating="++"].selected,
.rating-btn[data-rating="+"].selected {
    background: #10b981;
    color: white;
    border-color: #10b981;
}

.rating-btn[data-rating="+-"] {
    border-color: #f59e0b;
    color: #f59e0b;
}

.rating-btn[data-rating="+-"].selected {
    background: #f59e0b;
    color: white;
    border-color: #f59e0b;
}

.rating-btn[data-rating="-"],
.rating-btn[data-rating="--"] {
    border-color: #ef4444;
    color: #ef4444;
}

.rating-btn[data-rating="-"].selected,
.rating-btn[data-rating="--"].selected {
    background: #ef4444;
    color: white;
    border-color: #ef4444;
}

/* PDF Display Section */
.pdf-section {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.pdf-section h4 {
    margin: 0 0 1rem 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
}

.pdf-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pdf-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    background: white;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
}

.pdf-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pdf-icon {
    font-size: 1.5rem;
}

.pdf-details h5 {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1e293b;
}

.pdf-details p {
    margin: 0;
    font-size: 0.75rem;
    color: #64748b;
}

.pdf-actions {
    display: flex;
    gap: 0.5rem;
}

.pdf-actions .btn {
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
}

/* Enhanced Band Cards for Reviews */
.band-card.reviewable {
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.band-card.reviewable:hover {
    border-color: #6366f1;
}

.band-card.has-user-review {
    border-color: #10b981;
    background: #f0fdf4;
}

.user-review-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding: 0.5rem;
    background: #dcfce7;
    border-radius: 6px;
    font-size: 0.875rem;
}

.user-review-rating {
    font-weight: 600;
    color: #16a34a;
}

.user-review-text {
    color: #15803d;
    font-style: italic;
}

/* Previous Reviews Hint */
#previous-reviews-hint.visible {
    display: block !important;
    color: #6366f1;
    font-weight: 500;
}

/* Excel-like Lineup Table */
.lineup-table {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.lineup-header {
    display: grid;
    grid-template-columns: 3fr 140px 3fr 140px 170px;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-bottom: 2px solid #e2e8f0;
    font-weight: 600;
    color: #374151;
    font-size: 0.875rem;
}

.lineup-row {
    display: grid;
    grid-template-columns: 3fr 140px 3fr 140px 170px;
    gap: 1.5rem;
    padding: 1.5rem;
    border-bottom: 1px solid #f1f5f9;
    transition: background-color 0.2s ease;
    align-items: center;
    min-height: 80px;
}

.lineup-row:hover {
    background: #f8fafc;
}

.lineup-row:last-child {
    border-bottom: none;
}

.band-name-col {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 0;
}

.band-remove-btn {
    background: #ef4444;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.band-remove-btn:hover {
    background: #dc2626;
    transform: scale(1.05);
}

.band-name {
    font-weight: 600;
    color: #1e293b;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.band-stage,
.band-time {
    font-size: 0.75rem;
    color: #64748b;
    margin-left: 0.5rem;
}

.rating-col,
.review-col,
.avg-rating-col {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-width: 0;
}

.user-rating {
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.875rem;
}

.user-review {
    cursor: pointer;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    background: #f1f5f9;
    color: #374151;
    font-size: 0.875rem;
    max-width: 300px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: background-color 0.2s ease;
    line-height: 1.4;
}

.user-review:hover {
    background: #e2e8f0;
}

.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
    border-radius: 4px;
}

/* Mobile responsive for lineup table */
@media (max-width: 768px) {
    .lineup-header,
    .lineup-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .lineup-header {
        display: none;
    }
    
    .lineup-row {
        display: block;
        padding: 1rem;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        margin-bottom: 0.5rem;
        background: white;
    }
    
    .band-name-col {
        margin-bottom: 0.75rem;
        font-size: 1.125rem;
    }
    
    .rating-col,
    .review-col,
    .avg-rating-col,
    .actions-col {
        justify-content: flex-start;
        margin-bottom: 0.5rem;
    }
    
    .rating-col::before {
        content: "My Rating: ";
        font-weight: 600;
        margin-right: 0.5rem;
    }
    
    .review-col::before {
        content: "My Review: ";
        font-weight: 600;
        margin-right: 0.5rem;
    }
    
    .avg-rating-col::before {
        content: "Avg Rating: ";
        font-weight: 600;
        margin-right: 0.5rem;
    }
    
    .actions-col::before {
        content: "Actions: ";
        font-weight: 600;
        margin-right: 0.5rem;
    }
}

/* Edit Lineup Modal Styles */
.edit-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.edit-section h3 {
    margin: 0 0 1.5rem 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    border-bottom: 2px solid #6366f1;
    padding-bottom: 0.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .modal-content.modal-wide {
        width: 98%;
        margin: 0.5rem;
    }
}

/* Print styles */
/* Event Detail Layout */
.event-header-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.event-title-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 0.5rem 0;
}

.event-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
    align-self: flex-start;
}

.lineup-section-full {
    width: 100%;
    margin-top: 2rem;
}

.lineup-container {
    width: 100%;
    background: white;
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

/* Ensure all lineup-related text is uppercase */
.lineup-section-full h3,
.band-name,
.band-stage,
.band-time,
.lineup-header div,
.pdf-section h4 {
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.lineup-container .section-header {
    padding: 1.5rem 2rem;
    margin-bottom: 0;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.lineup-container .lineup-table {
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
}

/* Mobile responsive for event detail layout */
@media (max-width: 768px) {
    .event-header-content {
        flex-direction: column;
        align-items: stretch;
    }
    
    .event-actions {
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    
    .lineup-container .section-header {
        padding: 1rem;
    }
}

@media print {
    .navbar,
    .modal,
    .toast-container,
    .loading {
        display: none !important;
    }

    .main-content {
        margin-top: 0;
    }

    .page {
        display: block !important;
    }
}

/* Enhanced Delete Confirmation Modal */
#confirm-modal .modal-content {
    max-width: 450px;
}

.confirm-modal-body {
    padding: 2rem;
    text-align: center;
}

.confirm-modal-body .modal-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #ef4444;
}

.confirm-modal-body .modal-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.confirm-modal-body .modal-message {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.confirm-modal-actions {
    display: flex;
    gap: 1rem;
}

.btn-confirm-danger {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: white;
    border: none;
    flex: 1;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.btn-confirm-danger:hover {
    background: linear-gradient(135deg, #ff5252 0%, #e84343 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 107, 107, 0.4);
}

.btn-cancel {
    background: rgba(255, 255, 255, 0.9);
    color: #64748b;
    border: 2px solid #e2e8f0;
    flex: 1;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-cancel:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Excel-like Tab Navigation */
.festival-tabs {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-top: 1rem;
}

.tab-container {
    display: flex;
    align-items: center;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 0.5rem 1rem;
    gap: 0.5rem;
}

.tab-list {
    display: flex;
    flex: 1;
    gap: 2px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.tab-list::-webkit-scrollbar {
    display: none;
}

.festival-tab {
    background: #e2e8f0;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px 6px 0 0;
    font-weight: 600;
    font-size: 0.875rem;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    min-width: 120px;
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.festival-tab:hover {
    background: #cbd5e1;
    color: #475569;
}

.festival-tab.active {
    background: white;
    color: #1e293b;
    border-bottom: 2px solid #6366f1;
    transform: translateY(1px);
}

.festival-tab .tab-close {
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 1rem;
    cursor: pointer;
    padding: 0;
    margin-left: 0.25rem;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.festival-tab .tab-close:hover {
    background: #ef4444;
    color: white;
}

.tab-content {
    padding: 2rem;
    min-height: 600px;
}

.festival-content {
    display: none;
}

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

/* Festival Header */
.festival-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 1rem;
}

.festival-info h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.festival-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #64748b;
}

.festival-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
    flex-wrap: wrap;
}

/* List-based Lineup Display */
.lineup-list-container {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.lineup-list-header {
    display: grid;
    grid-template-columns: 3fr 120px 3fr 120px 170px;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: #f8fafc;
    border-bottom: 2px solid #e2e8f0;
    font-weight: 700;
    color: #374151;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lineup-list-row {
    display: grid;
    grid-template-columns: 3fr 120px 3fr 120px 170px;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #f1f5f9;
    transition: background-color 0.2s ease;
    align-items: center;
    min-height: 60px;
    position: relative;
    width: 100%;
}

.lineup-list-row:hover {
    background: #f8fafc;
}

.lineup-list-row:last-child {
    border-bottom: none;
}

.band-name-cell {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
}

.band-name-text {
    font-weight: 600;
    color: #1e293b;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.band-stage-time {
    font-size: 0.75rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rating-cell {
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-rating-display {
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.875rem;
    min-width: 40px;
    text-align: center;
    text-transform: uppercase;
}

.user-rating-display.rating-plus-plus {
    background: #dcfce7;
    color: #16a34a;
}

.user-rating-display.rating-plus {
    background: #f0fdf4;
    color: #22c55e;
}

.user-rating-display.rating-neutral {
    background: #fef3c7;
    color: #d97706;
}

.user-rating-display.rating-minus {
    background: #fee2e2;
    color: #ef4444;
}

.user-rating-display.rating-minus-minus {
    background: #fecaca;
    color: #dc2626;
}

.review-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

.user-review-display {
    cursor: pointer;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    background: #f1f5f9;
    color: #374151;
    font-size: 0.875rem;
    max-width: 250px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: background-color 0.2s ease;
    line-height: 1.4;
    border: 1px solid #e2e8f0;
}

.user-review-display:hover {
    background: #e2e8f0;
    border-color: #cbd5e1;
}

.user-review-display.has-review {
    background: #f0fdf4;
    border-color: #bbf7d0;
    color: #15803d;
}

.user-review-display.placeholder {
    background: #fafafa;
    color: #94a3b8;
    font-style: italic;
    border-style: dashed;
}

.avg-rating-cell {
    display: flex;
    align-items: center;
    justify-content: center;
}

.avg-rating-display {
    font-weight: 600;
    color: #64748b;
    font-size: 0.875rem;
    text-transform: uppercase;
}

.actions-cell {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
    width: 100%;
    min-height: 32px;
    padding: 0 0.25rem;
    min-width: 170px;
}

.btn-xs {
    padding: 0.375rem 0.5rem;
    font-size: 0.75rem;
    border-radius: 4px;
    font-weight: 600;
    min-width: 50px;
    width: 50px;
    text-align: center;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Button styling based on DOM order */
.actions-cell .others-reviews-btn {
    background: #f1f5f9;
    color: #6366f1;
    border: 1px solid #e2e8f0;
    order: 1;
}

.actions-cell .btn-primary {
    background: #007bff;
    color: white;
    border: none;
    order: 2;
}

.actions-cell .btn-outline {
    background: transparent;
    color: #007bff;
    border: 1px solid #007bff;
    order: 3;
}

/* Ensure the actions cell is wide enough */
.lineup-list-row {
    grid-template-columns: 3fr 120px 3fr 120px 170px; /* Increased from 140px to 170px */
}

.others-reviews-btn {
    background: #f1f5f9;
    color: #6366f1;
    border: 1px solid #e2e8f0;
    cursor: pointer;
    transition: all 0.2s ease;
}

.others-reviews-btn:hover {
    background: #e2e8f0;
    border-color: #6366f1;
}

.others-reviews-btn.has-reviews {
    background: #eef2ff;
    border-color: #c7d2fe;
}

/* Disabled states for more buttons */
.more-reviews-btn:disabled,
.more-reviews-btn.disabled,
.others-reviews-btn:disabled,
.others-reviews-btn.disabled {
    background: #f5f5f5 !important;
    color: #9ca3af !important;
    border-color: #d1d5db !important;
    cursor: not-allowed !important;
    opacity: 0.6 !important;
    transform: none !important;
    box-shadow: none !important;
}

.more-reviews-btn:disabled:hover,
.more-reviews-btn.disabled:hover,
.others-reviews-btn:disabled:hover,
.others-reviews-btn.disabled:hover {
    background: #f5f5f5 !important;
    color: #9ca3af !important;
    border-color: #d1d5db !important;
    transform: none !important;
    box-shadow: none !important;
}

/* Mobile responsive for lineup list */
@media (max-width: 768px) {
    .tab-container {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .tab-list {
        justify-content: flex-start;
    }
    
    .festival-tab {
        min-width: 100px;
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
    
    .lineup-list-header,
    .lineup-list-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .lineup-list-row {
        grid-template-columns: 1fr;
    }
    
    .lineup-list-header {
        display: none;
    }
    
    .lineup-list-row {
        display: block;
        padding: 1rem;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        margin-bottom: 0.5rem;
        background: white;
    }
    
    .band-name-cell {
        margin-bottom: 0.75rem;
        font-size: 1.125rem;
    }
    
    .rating-cell,
    .review-cell,
    .avg-rating-cell {
        justify-content: flex-start;
        margin-bottom: 0.5rem;
    }

    .actions-cell {
        justify-content: flex-end;
        margin-bottom: 0.5rem;
    }
    
    .rating-cell::before {
        content: "My Rating: ";
        font-weight: 600;
        margin-right: 0.5rem;
        color: #64748b;
    }
    
    .review-cell::before {
        content: "My Review: ";
        font-weight: 600;
        margin-right: 0.5rem;
        color: #64748b;
    }
    
    .avg-rating-cell::before {
        content: "Avg Rating: ";
        font-weight: 600;
        margin-right: 0.5rem;
        color: #64748b;
    }
    
    .actions-cell::before {
        content: "Actions: ";
        font-weight: 600;
        margin-right: 0.5rem;
        color: #64748b;
    }
    
    .festival-header {
        flex-direction: column;
        align-items: stretch;
    }
    
    .festival-actions {
        justify-content: flex-start;
    }
}

/* Review Inheritance Placeholder */
.review-placeholder {
    color: #94a3b8;
    font-style: italic;
    font-size: 0.875rem;
}

.review-inherited {
    background: #fef3c7;
    border-color: #fbbf24;
    color: #92400e;
}

.review-inherited::before {
    content: "📝 ";
}

/* Others Reviews Foldout */
.others-reviews-foldout {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 1rem;
    min-width: 300px;
    max-width: 400px;
    z-index: 100;
    display: none;
}

.others-reviews-foldout.active {
    display: block;
}

.others-review-item {
    padding: 0.75rem;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.875rem;
}

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

.others-review-user {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.others-review-rating {
    display: inline-block;
    padding: 0.125rem 0.375rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.75rem;
    margin-right: 0.5rem;
}

.others-review-text {
    color: #64748b;
    line-height: 1.4;
}

/* Inline Review Editing */
.inline-review-editor {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    border: 2px solid #6366f1;
    border-radius: 6px;
    padding: 0.5rem;
    z-index: 10;
}

.inline-review-editor.active {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.inline-review-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 0.875rem;
    background: transparent;
}

.inline-review-actions {
    display: flex;
    gap: 0.25rem;
}

.inline-review-save,
.inline-review-cancel {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.inline-review-save {
    color: #16a34a;
}

.inline-review-save:hover {
    background: #dcfce7;
}

.inline-review-cancel {
    color: #ef4444;
}

.inline-review-cancel:hover {
    background: #fee2e2;
}

/* Enhanced Similar Artists Loading Experience */
.similar-artists-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 4000;
    animation: fadeIn 0.3s ease;
}

.similar-artists-loading-content {
    text-align: center;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.similar-artists-loading-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: rainbow-pulse 2s ease-in-out infinite, bounce 1s ease-in-out infinite;
    position: relative;
    z-index: 10;
}

.similar-artists-loading-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: text-glow 2s ease-in-out infinite alternate;
}

.similar-artists-loading-subtext {
    color: #64748b;
    font-size: 1rem;
    font-weight: 500;
    animation: fade-in-out 3s ease-in-out infinite;
}

/* Rainbow background effects */
.similar-artists-loading-overlay::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
        #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57, #ff9ff3, #ff6b6b,
        #4ecdc4, #45b7d1, #96ceb4, #feca57, #ff9ff3, #ff6b6b);
    background-size: 400% 400%;
    animation: rainbow-rotate 4s ease-in-out infinite;
    opacity: 0.1;
    border-radius: 50%;
    z-index: 1;
}

.similar-artists-loading-overlay::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle,
        rgba(102, 126, 234, 0.1) 0%,
        rgba(245, 87, 108, 0.1) 50%,
        rgba(255, 107, 107, 0.1) 100%);
    border-radius: 50%;
    animation: pulse-glow 2s ease-in-out infinite alternate;
    z-index: 2;
}

/* Popping elements */
.popping-element {
    position: absolute;
    font-size: 2rem;
    pointer-events: none;
    animation: pop-and-fade 2s ease-out forwards;
    z-index: 15;
}

.popping-element:nth-child(odd) {
    animation-delay: 0.2s;
}

.popping-element:nth-child(even) {
    animation-delay: 0.5s;
}

.popping-element:nth-child(3n) {
    animation-delay: 0.8s;
}

/* Completion celebration */
.similar-artists-complete-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.9) 0%, rgba(5, 150, 105, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5000;
    animation: success-burst 0.8s ease-out;
}

.similar-artists-complete-content {
    text-align: center;
    color: white;
    padding: 2rem;
    animation: bounce-in 0.6s ease-out;
}

.similar-artists-complete-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
    animation: success-spin 0.8s ease-out;
}

.similar-artists-complete-text {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.similar-artists-complete-subtext {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Keyframe animations */
@keyframes rainbow-rotate {
    0% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(90deg) scale(1.1); }
    50% { transform: rotate(180deg) scale(1.2); }
    75% { transform: rotate(270deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

@keyframes pulse-glow {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.6; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes text-glow {
    0% { text-shadow: 0 0 5px rgba(102, 126, 234, 0.3); }
    100% { text-shadow: 0 0 20px rgba(102, 126, 234, 0.8), 0 0 30px rgba(102, 126, 234, 0.4); }
}

@keyframes fade-in-out {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

@keyframes pop-and-fade {
    0% {
        transform: scale(0) rotate(0deg);
        opacity: 1;
    }
    20% {
        transform: scale(1.2) rotate(10deg);
    }
    40% {
        transform: scale(1) rotate(-5deg);
    }
    60% {
        transform: scale(1.1) rotate(2deg);
    }
    100% {
        transform: scale(0.8) rotate(0deg);
        opacity: 0;
    }
}

@keyframes success-burst {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes bounce-in {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes success-spin {
    0% {
        transform: rotate(0deg) scale(0);
    }
    60% {
        transform: rotate(180deg) scale(1.2);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

/* Enhanced PDF Scan Loading Experience */
.pdf-scan-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 4000;
    animation: fadeIn 0.3s ease;
}

.pdf-scan-loading-content {
    text-align: center;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.pdf-scan-loading-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: rainbow-pulse 2s ease-in-out infinite, bounce 1s ease-in-out infinite;
    position: relative;
    z-index: 10;
}

.pdf-scan-loading-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: text-glow 2s ease-in-out infinite alternate;
}

.pdf-scan-loading-subtext {
    color: #64748b;
    font-size: 1rem;
    font-weight: 500;
    animation: fade-in-out 3s ease-in-out infinite;
}

/* PDF Scan Completion celebration */
.pdf-scan-complete-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.9) 0%, rgba(5, 150, 105, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5000;
    animation: success-burst 0.8s ease-out;
}

.pdf-scan-complete-content {
    text-align: center;
    color: white;
    padding: 2rem;
    animation: bounce-in 0.6s ease-out;
}

.pdf-scan-complete-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
    animation: success-spin 0.8s ease-out;
}

.pdf-scan-complete-text {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pdf-scan-complete-subtext {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Similar Artists Modal Styles - Minimalistic */
.similar-artists-modal-content {
    max-width: 600px;
    width: 95%;
}

.modal-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.similar-icon {
    font-size: 1.1rem;
}

.similar-artists-list {
    margin-top: 1rem;
}

.similar-artist-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f5f9;
}

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

.artist-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #6366f1;
    color: white;
    border-radius: 50%;
    font-size: 0.875rem;
    font-weight: 600;
    flex-shrink: 0;
}

.artist-details {
    flex: 1;
    min-width: 0;
}

.artist-name {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.artist-genres {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

.no-similar-artists {
    text-align: center;
    padding: 2rem 1rem;
    color: #64748b;
}

.no-results-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.6;
}

.no-similar-artists p {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.no-similar-artists small {
    font-size: 0.875rem;
    color: #94a3b8;
}

/* Mobile responsive for similar artists modal */
@media (max-width: 768px) {
    .similar-artists-modal-content {
        width: 98%;
        margin: 0.5rem;
    }

    .similar-artist-item {
        gap: 0.75rem;
        padding: 0.625rem 0;
    }

    .artist-number {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }

    .artist-name {
        font-size: 0.95rem;
    }

    .artist-genres {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .modal-title {
        font-size: 1.1rem;
    }

    .similar-icon {
        font-size: 1rem;
    }
}

/* More Reviews Modal - Clean Design */
.more-reviews-section {
    margin-bottom: 2rem;
}

.section-header {
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f1f5f9;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.section-icon {
    font-size: 1.25rem;
    opacity: 0.8;
}

.section-count {
    background: #f1f5f9;
    color: #64748b;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    margin-left: auto;
}

.reviews-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.review-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.25rem;
    transition: all 0.2s ease;
    position: relative;
}

.review-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.review-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    gap: 1rem;
}

.review-meta {
    flex: 1;
    min-width: 0;
}

.review-event {
    font-weight: 600;
    color: #1e293b;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.review-date,
.review-event-date {
    color: #64748b;
    font-size: 0.8rem;
    font-weight: 500;
}

.review-username {
    font-weight: 600;
    color: #1e293b;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.review-rating-badge {
    background: #f1f5f9;
    color: #64748b;
    font-size: 0.875rem;
    font-weight: 700;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    min-width: 40px;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.user-review-card {
    border-left: 4px solid #10b981;
    background: linear-gradient(135deg, #f0fdf4 0%, white 50%);
}

.user-review-card .review-rating-badge {
    background: #dcfce7;
    color: #16a34a;
    border-color: #bbf7d0;
}

.other-review-card {
    border-left: 4px solid #6366f1;
    background: linear-gradient(135deg, #eef2ff 0%, white 50%);
}

.other-review-card .review-rating-badge {
    background: #e0e7ff;
    color: #4f46e5;
    border-color: #c7d2fe;
}

.review-content {
    color: #374151;
    line-height: 1.5;
    font-size: 0.9rem;
}

.review-content.empty {
    color: #94a3b8;
    font-style: italic;
    font-size: 0.85rem;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem 2rem;
    color: #64748b;
}

.empty-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.6;
}

.empty-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.75rem;
}

.empty-message {
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 300px;
    margin: 0 auto;
}

/* Mobile responsive for more reviews modal */
@media (max-width: 768px) {
    .review-card {
        padding: 1rem;
    }
    
    .review-card-header {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }
    
    .review-rating-badge {
        align-self: flex-start;
        min-width: 35px;
    }
    
    .section-title {
        font-size: 1rem;
    }
    
    .empty-state {
        padding: 2rem 1rem;
    }
}
