/* Estilos profissionais para o painel do cliente */
.card-jet {
    border: none;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    background: #ffffff;
}

#mapa {
    width: 100%;
    height: 300px;
    border-radius: 12px;
    display: none;
    margin-top: 20px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}

.status-box {
    padding: 16px;
    border-radius: 12px;
    font-weight: 600;
    display: none;
    margin-top: 20px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.status-buscando {
    background-color: #fff8e1;
    color: #b78103;
    border: 1px solid #ffe8b6;
}

.status-vindo {
    background-color: #e3f2fd;
    color: #0d47a1;
    border: 1px solid #bbdefb;
    animation: pulse-status 1.5s infinite;
}

@keyframes pulse-status {
    0% { transform: scale(1); }
    50% { transform: scale(1.01); }
    100% { transform: scale(1); }
}