:root {
    --primary-color: #2563eb;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --border-color: #e5e7eb;
    --bg-subtle: #f9fafb;
    --card-bg: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: #fff;
}

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

header {
    border-bottom: 2px solid var(--border-color);
    padding: 2rem 0;
    margin-bottom: 3rem;
    position: relative;
}

header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

header h1 a {
    background: linear-gradient(135deg,
        #ff6b6b 0%,    /* Red */
        #ee5a6f 12%,   /* Red-Orange */
        #f06595 24%,   /* Pink */
        #cc5de8 36%,   /* Purple */
        #845ef7 48%,   /* Blue-Purple */
        #5c7cfa 60%,   /* Blue */
        #339af0 72%,   /* Cyan */
        #22b8cf 84%,   /* Teal */
        #20c997 96%    /* Green */
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: filter 0.3s ease;
}

header h1 a:hover {
    filter: brightness(1.2);
}

header .subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.header-nav {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
}

.nav-link {
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.2s;
    font-size: 0.875rem;
}

.nav-link:hover {
    background: var(--bg-subtle);
    color: var(--primary-color);
}

/* Mobile burger menu */
.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
    background: none;
    border: none;
    z-index: 1001;
}

.burger-menu span {
    width: 24px;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .header-nav {
        position: relative;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
        border-radius: 8px;
        margin-top: 0.5rem;
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links .nav-link {
        padding: 0.75rem 1.5rem;
        border-radius: 0;
    }

    .nav-links .nav-link:hover {
        background: var(--bg-subtle);
    }
}

.language-selector {
    position: absolute;
    top: 2rem;
    right: 0;
    display: flex;
    gap: 0.5rem;
}

.lang-option {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    background: white;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 1.5rem;
    cursor: pointer;
}

.lang-option:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.lang-option.active {
    border-color: var(--primary-color);
    background: var(--primary-color);
}

.lang-option.active .flag {
    filter: brightness(1.2);
}

.lang-option .flag {
    user-select: none;
}

.breadcrumb {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.brand-card {
    display: block;
    padding: 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
}

.brand-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.brand-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.ink-count {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.brand-color-distribution {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.brand-color-distribution svg {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

.ink-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.ink-card {
    border: 2px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s;
}

.ink-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.ink-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.ink-color {
    height: 120px;
    width: 100%;
    position: relative;
}

/* Collection check button */
.collection-check {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    cursor: pointer;
    display: none !important;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
    backdrop-filter: blur(4px);
}

.collection-check.authenticated {
    display: flex !important;
}

.collection-check:hover {
    border-color: rgba(255, 255, 255, 1);
    background: rgba(255, 255, 255, 0.3);
}

.collection-check svg {
    opacity: 0;
    stroke: rgba(0, 0, 0, 0.5);
    transition: all 0.2s ease;
    width: 14px;
    height: 14px;
}

.collection-check.checked {
    background: white;
    border-color: white;
}

.collection-check.checked svg {
    opacity: 1;
}

.collection-check.animating {
    animation: checkBounce 0.3s ease;
}

@keyframes checkBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Wishlist heart button - hidden by default */
.wishlist-heart {
    position: absolute;
    top: 8px;
    right: 34px;
    width: 20px;
    height: 20px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: none !important;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
}

/* Show when authenticated - JavaScript will add this class */
.wishlist-heart.authenticated {
    display: flex !important;
}

.wishlist-heart:hover {
    transform: scale(1.15);
}

.wishlist-heart svg {
    width: 20px;
    height: 20px;
    transition: all 0.2s ease;
    stroke: white;
    fill: transparent;
    stroke-width: 2;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.wishlist-heart.checked svg {
    fill: white;
    stroke: white;
}

.wishlist-heart.animating {
    animation: heartBounce 0.3s ease;
}

@keyframes heartBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

.ink-name {
    padding: 1rem;
    font-weight: 600;
}

.ink-category {
    padding: 0 1rem 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.ink-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.info-section {
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
}

.info-section h3 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.info-section p {
    margin-bottom: 0.75rem;
}

.color-display-large {
    margin-bottom: 1.5rem;
}

.color-swatch-large {
    width: 100%;
    height: 150px;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.color-hex-large {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.color-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--bg-subtle);
    border-radius: 4px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.brand-chromaticity-section {
    margin: 2rem 0 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.brand-chromaticity-section h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.section-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.brand-chromaticity-diagram {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.brand-chromaticity-diagram svg {
    width: 100%;
    height: auto;
}

.ink-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.2s;
}

.ink-card-link:hover {
    transform: translateY(-2px);
}

.ink-card-link:hover .ink-card {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.ink-card-detailed:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

/* Ink Detail Page Styles */
.ink-detail-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.ink-detail-header-content {
    flex: 1;
}

.ink-detail-header h1 {
    margin: 0 0 0.5rem 0;
    font-size: 2.5rem;
}

.ink-detail-header .brand-name {
    color: var(--text-secondary);
    font-size: 1.25rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.ink-detail-header .brand-name:hover {
    color: var(--primary-color);
}

.ink-detail-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex-shrink: 0;
}

.ink-detail-actions .collection-check,
.ink-detail-actions .wishlist-heart {
    position: relative;
    top: auto;
    right: auto;
    width: 24px;
    height: 24px;
    display: none !important;
}

.ink-detail-actions .collection-check.authenticated,
.ink-detail-actions .wishlist-heart.authenticated {
    display: flex !important;
}

.ink-detail-actions .collection-check {
    border: 2px solid rgba(128, 128, 128, 0.9);
    background: transparent;
}

.ink-detail-actions .collection-check.checked {
    background: rgba(128, 128, 128, 0.9);
    border-color: rgba(128, 128, 128, 0.9);
}

.ink-detail-actions .collection-check svg {
    width: 16px;
    height: 16px;
    stroke: white;
    opacity: 0;
}

.ink-detail-actions .collection-check.checked svg {
    opacity: 1;
}

.ink-detail-actions .wishlist-heart {
    background: transparent;
}

.ink-detail-actions .wishlist-heart svg {
    width: 24px;
    height: 24px;
    stroke: rgba(128, 128, 128, 0.9);
    fill: transparent;
    filter: none;
}

.ink-detail-actions .wishlist-heart.checked svg {
    fill: rgba(128, 128, 128, 0.9);
    stroke: rgba(128, 128, 128, 0.9);
}

.ink-color-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 1rem;
}

.ink-detail-content {
    margin: 2rem 0;
}

.detail-section {
    margin-bottom: 3rem;
}

.detail-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.color-display-large {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.color-swatch-large {
    width: 200px;
    height: 200px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.color-info-large {
    flex: 1;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.info-label {
    font-weight: 600;
    color: var(--text-secondary);
}

.info-value {
    font-family: 'Courier New', monospace;
    color: var(--text-primary);
}

.chromaticity-container {
    display: flex;
    justify-content: center;
    padding: 2rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.chromaticity-container svg {
    max-width: 100%;
    height: auto;
}

/* Dominant Colors Section */
.dominant-colors-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.dominant-color-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.dominant-color-swatch {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.dominant-color-info {
    flex: 1;
}

.dominant-hex {
    font-family: 'Courier New', monospace;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.dominant-percentage {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Similar Inks Section */
.similar-inks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

/* Reviews Section */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.review-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
    font-weight: 500;
}

.review-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
    background: var(--primary-color)05;
}

.review-site-name {
    flex: 1;
}

.review-external-icon {
    flex-shrink: 0;
    opacity: 0.5;
    transition: opacity 0.2s ease;
}

.review-card:hover .review-external-icon {
    opacity: 1;
}

/* Similar Inks Section */
.similar-ink-card {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

.similar-ink-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: var(--text-secondary);
}

.similar-ink-color {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.similar-ink-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.similar-ink-name {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-primary);
}

.similar-ink-brand {
    font-size: 0.875rem;
    color: var(--text-secondary);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.similar-ink-score {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 400;
    margin-left: 0.5rem;
}

.ink-id-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-secondary);
    opacity: 0.7;
}

.ink-id-label {
    font-weight: 600;
    margin-right: 0.5rem;
}

.ink-id-value {
    font-family: 'Courier New', monospace;
    user-select: all;
}

footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
    color: var(--text-secondary);
}

/* Toggle View Button */
.toggle-view-btn {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-secondary);
}

.toggle-view-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: var(--bg-subtle);
}

.toggle-view-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: rotate(45deg);
}

.toggle-view-btn.active .horizontal-line {
    opacity: 0;
}

/* Detailed Ink Cards */
.ink-grid-detailed {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

@media (max-width: 768px) {
    .ink-grid-detailed {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.ink-card-detailed {
    padding: 0;
    display: flex;
    flex-direction: column;
}

.ink-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.ink-header .ink-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    padding: 0;
}

.color-summary {
    padding: 1.5rem;
    background: var(--bg-subtle);
}

.dominant-colors {
    padding: 1.5rem;
}

.chromaticity-diagram {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.color-display {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.color-swatch {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    flex-shrink: 0;
}

.color-info {
    flex: 1;
}

.color-hex {
    font-family: 'Courier New', monospace;
    font-weight: 700;
    font-size: 1.125rem;
}

.chromaticity-diagram svg {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    header h1 {
        font-size: 2rem;
    }

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

    .brand-card {
        padding: 1rem;
    }

    .brand-chromaticity-section {
        margin-top: 1.5rem;
    }

    .brand-chromaticity-diagram {
        max-width: 100%;
        padding: 0.5rem;
    }

    /* Detailed ink cards on mobile */
    .ink-header {
        padding: 1rem;
    }

    .color-summary {
        padding: 1rem;
    }

    .dominant-colors {
        padding: 1rem;
    }

    .chromaticity-diagram {
        padding: 1rem;
    }

    .chromaticity-diagram svg {
        width: 100%;
        height: auto;
    }

    .color-display {
        flex-direction: row;
        gap: 0.75rem;
    }

    .color-swatch {
        width: 50px;
        height: 50px;
    }

    .color-display-large {
        flex-direction: column;
    }

    .color-swatch-large {
        width: 100%;
        height: 150px;
    }

    .ink-detail-grid {
        grid-template-columns: 1fr;
    }

    .dominant-colors-list {
        grid-template-columns: 1fr;
    }

    .similar-inks-grid {
        grid-template-columns: 1fr;
    }

    .ink-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 0.75rem;
    }
}

/* Color category pages */
.color-page-header {
    margin-bottom: 2rem;
}

.color-page-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.color-page-header .color-description {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.color-stats {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.stat-item {
    padding: 0.5rem 1rem;
    background: var(--bg-subtle);
    border-radius: 8px;
    font-weight: 600;
}

.inks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.ink-card {
    display: block;
    text-decoration: none;
    color: inherit;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s ease;
    background: var(--card-bg);
}

.ink-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.ink-card .ink-color {
    height: 100px;
    width: 100%;
}

.ink-card .ink-info {
    padding: 1rem;
}

.ink-card .ink-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.ink-card .ink-brand {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Colors index page */
.color-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.color-category-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
    background: var(--card-bg);
}

.color-category-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.color-category-swatch {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    flex-shrink: 0;
}

.color-category-info {
    flex: 1;
}

.color-category-name {
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.color-category-count {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Report Problem Button & Modal */
.report-btn {
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.2s;
}

.report-btn:hover {
    background: var(--primary-dark);
}

.report-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.report-modal-content {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.report-modal-content h2 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.report-modal-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.report-modal-content textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.95rem;
    resize: vertical;
    min-height: 120px;
    margin-bottom: 0.5rem;
}

.report-modal-content textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.report-error {
    color: #d32f2f;
    background: #ffebee;
    padding: 0.75rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.report-actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
}

.report-actions button {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.2s;
}

#report-cancel {
    background: var(--background);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

#report-cancel:hover {
    background: var(--border-color);
}

#report-submit {
    background: var(--primary-color);
    color: white;
}

#report-submit:hover {
    background: var(--primary-dark);
}

#report-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
