/* ===== Hall-specific Additional Styles ===== */
/* Main styles are in style.css - this file is for hall-specific overrides */

/* Hall card capacity highlight */
.hall-meta-item .value.capacity {
    font-size: 15px;
}

/* Genre tag colors by genre */
.tag-genre-classic {
    background: #eef2ff;
    color: #4338ca;
}
.tag-genre-live {
    background: #fef2f2;
    color: #dc2626;
}
.tag-genre-theater {
    background: #fff7ed;
    color: #c2410c;
}
.tag-genre-seminar {
    background: #eff6ff;
    color: #2563eb;
}
.tag-genre-dance {
    background: #f0fdf4;
    color: #16a34a;
}

/* Single hall info table */
.hall-info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}
.hall-info-table th,
.hall-info-table td {
    padding: 12px 16px;
    text-align: left;
    font-size: 14px;
    border-bottom: 1px solid #e2e8f0;
}
.hall-info-table th {
    width: 140px;
    background: #f8fafc;
    color: #4a5568;
    font-weight: 600;
    white-space: nowrap;
}
.hall-info-table tr:nth-child(even) th {
    background: #f1f5f9;
}
.hall-info-table td {
    color: #1a202c;
}

/* Related halls section */
.related-halls {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 2px solid #e2e8f0;
}
.related-halls h2 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #1a202c;
}
.related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
@media (max-width: 768px) {
    .related-grid {
        grid-template-columns: 1fr;
    }
    .hall-info-table th {
        width: 100px;
    }
}

/* Back to list button */
.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 24px;
    padding: 10px 24px;
    background: #f7fafc;
    color: #4a5568;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    transition: all .15s;
}
.btn-back:hover {
    background: #eef2ff;
    color: #2563eb;
    border-color: #2563eb;
    text-decoration: none;
}
