/* Container principal */
.vw-busmaps-box {
    border: 1px solid #ddd;
    padding: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    background: #fafafa;
    border-radius: 4px;
}

.vw-busmaps-title {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

/* Seletor de saída */
.vw-busmaps-event-selector {
    margin-bottom: 15px;
}

.vw-busmaps-event-selector label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
}

.vw-busmaps-event-selector select {
    width: 100%;
    max-width: 100%;
    padding: 8px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

/* Mensagens */
.vw-busmaps-hint,
.vw-busmaps-loading,
.vw-busmaps-error,
.vw-busmaps-warning {
    font-size: 13px;
    padding: 10px;
    border-radius: 3px;
}

.vw-busmaps-hint {
    color: #666;
    background: #f9f9f9;
    border: 1px dashed #ccc;
}

.vw-busmaps-loading {
    color: #1976d2;
    background: #e3f2fd;
    border: 1px solid #90caf9;
}

.vw-busmaps-error {
    color: #c62828;
    background: #ffebee;
    border: 1px solid #ef5350;
}

.vw-busmaps-warning {
    color: #f57c00;
    background: #fff3e0;
    border: 1px solid #ffb74d;
}

/* Legenda */
.vw-busmaps-legend {
    margin-bottom: 12px;
    padding: 5px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
    font-size: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    align-items: center;
}

/* Grid de assentos */
.vw-busmaps-grid {
    display: inline-block;
    border: 1px solid #ccc;
    padding: 15px;
    background: #fff;
    border-radius: 4px;
}

.vw-busmaps-row {
    display: flex;
    margin-bottom: 5px;
}

.vw-busmaps-row:last-child {
    margin-bottom: 0;
}

/* Assentos */
.vw-seat {
    width: 36px;
    height: 36px;
    margin-right: 5px;
    border-radius: 4px;
    font-size: 11px;
    line-height: 36px;
    text-align: center;
    cursor: pointer;
    box-sizing: border-box;
    font-weight: 500;
    transition: all 0.2s ease;
}

.vw-seat-legend {
    width: 18px;
    height: 18px;
    margin-right: 5px;
    border-radius: 4px;
    font-size: 11px;
    line-height: 36px;
    box-sizing: border-box;
    font-weight: 500;
 }

.vw-seat:hover:not(.vw-seat-disabled) {
    transform: scale(1.05);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Estados */
.vw-seat-free {
    background: #e8f5e9;
    border: 2px solid #4caf50;
    color: #2e7d32;
}

.vw-seat-selected {
    background: #2196f3;
    border: 2px solid #1976d2;
    color: #fff;
    font-weight: bold;
}

.vw-seat-blocked {
    background: #f5f5f5;
    border: 2px solid #9e9e9e;
    color: #757575;
}

.vw-seat-occupied {
    background: #ffcdd2;
    border: 2px solid #f44336;
    color: #c62828;
}

/* CORREÇÃO: Assentos reservados temporariamente (outras sessões) */
.vw-seat-reserved {
    background: #ffccbc;
    border: 2px solid #ff5722;
    color: #bf360c;
}

/* CORREÇÃO: Assentos de pedidos pendentes/aguardando pagamento - COR AMARELA */
.vw-seat-pending {
    background: #fff9c4 !important; /* Amarelo claro */
    border: 2px solid #fbc02d !important; /* Amarelo */
    color: #f57f17 !important; /* Amarelo escuro para texto */
}

.vw-seat-disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

/* Classe antiga mantida para compatibilidade */
.vw-seat-reserved-other {
    background: #ffeb3b;
    border: 2px solid #fbc02d;
    color: #f57f17;
}


/* Responsivo */
@media (max-width: 768px) {
    .vw-busmaps-box {
        padding: 15px;
    }

    .vw-seat {
        width: 32px;
        height: 32px;
        line-height: 32px;
        font-size: 10px;
        margin-right: 3px;
    }

    .vw-seat-legend {
        width: 16px;
        height: 16px;
        line-height: 16px;
        font-size: 10px;
        margin-right: 3px;
    }

    .vw-busmaps-grid {
        padding: 10px;
    }

    .vw-busmaps-legend {
        font-size: 11px;
        gap: 10px;
    }
}
