.seat-map-container {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    margin: 0 auto;
    font-family: system-ui, -apple-system, sans-serif;
    box-sizing: border-box;
}

.seat-map-container * {
    box-sizing: border-box;
}

.seat-map {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.driver {
    background-color: #f8fafc;
    border: 1px dashed #cbd5e1;
    border-radius: 6px;
    padding: 8px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #475569;
    margin-bottom: 8px;
}

.row {
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

.row.top {
    justify-content: flex-end;
}

.aisle {
    flex-grow: 1;
    min-width: 20px;
}

.seat {
    flex: 1;
    aspect-ratio: 1;
    min-width: 40px;
    max-width: 60px;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    outline: none;
}

.seat.blocked {
    cursor: not-allowed;
    opacity: 0.8;
}

.seat:focus {
    box-shadow: 0 0 0 2px #3b82f6;
}

.seatChosen {
    margin-top: 16px;
    text-align: center;
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}
