/* GCDans Bilet — Koltuk Haritası Stilleri (checkout, seat manager) */

.seat {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    border: 2px solid #aaa;
    font-size: .7rem;
    font-weight: 600;
    cursor: pointer;
    user-select: none;
    background: #fff;
    transition: all .15s;
}
.seat.available:hover { opacity: .85; }
.seat.selected {
    background: var(--gold, #c9a84c) !important;
    border-color: var(--gold, #c9a84c) !important;
    color: #fff !important;
    box-shadow: 0 0 0 2px rgba(201,168,76,.4);
}
.seat.sold,
.seat.reserved {
    background: #e0e0e0;
    border-color: #bbb;
    color: #aaa;
    cursor: not-allowed;
}
.seat.blocked {
    background: #e85d04 !important;
    border-color: #e85d04 !important;
    color: #fff !important;
    cursor: pointer !important;
}
.seat.blocked:hover { background: #d04a00 !important; }

.seat-grid {
    display: grid;
    gap: 4px;
    margin-bottom: 12px;
}
.colosseum-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}
.colosseum-section { margin-bottom: 1.5rem; }
.colosseum-section h6 {
    font-weight: 700;
    color: var(--navy, #1a2a6c);
    margin-bottom: .5rem;
}
.seat-price-legend { font-size: .85rem; }

#seat-map-container { overflow-x: auto; padding: .5rem 0; }
#selected-seats-summary {
    padding: .5rem .75rem;
    border-radius: 8px;
    background: #f0f8f0;
}
