

.exam-card {
    border-radius: 6px;
    transition: all .2s ease-in-out;
    margin-bottom: 20px;
}

.exam-card:hover {
    box-shadow: 0 4px 18px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.exam-card .panel-heading {
    background: #f5f7fa;
}

.exam-patient-name {
    font-size: 16px;
    font-weight: bold;
    color: #2c3e50;
}

.exam-section-title {
    font-size: 11px;
    text-transform: uppercase;
    color: #888;
    margin-top: 8px;
}

.exam-info {
    font-size: 13px;
    color: #555;
}

.exam-status {
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 12px;
}

.status-pendente { background: #f39c12; color: #fff; }
.status-emlaudo { background: #3498db; color: #fff; }
.status-finalizado { background: #27ae60; color: #fff; }
.status-urgente { background: #e74c3c; color: #fff; }

.exam-urgente {
    border-left-width: 4px !important;
    border-left-style: solid !important;
    border-left-color: #e74c3c !important;
}

.exam-updated-highlight {
    animation: pulseUpdate 1s ease-in-out 3;
}


/*Gradiente Clínico Suave*/
.card-exam-urgente-gcs {
    background: linear-gradient(
        135deg,
        #fff5f5 0%,
        #ffecec 100%
    );
    border: 1px solid #f5c6c6;
    border-left-width: 4px !important;
    border-left-style: solid !important;
    border-left-color: #e74c3c !important;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.08);
}

/*Fundo Branco com Glow Sutil*/
.card-exam-urgente-fbgs {
    background: #ffffff;
    border: 1px solid #f0d4d4;
    border-left-width: 4px !important;
    border-left-style: solid !important;
    border-left-color: #e74c3c !important;
    box-shadow:
        0 0 0 1px rgba(231, 76, 60, 0.06),
        0 4px 12px rgba(231, 76, 60, 0.10);
}

/*Fundo Warm Clinical*/
.card-exam-urgente-fwc {
    background-color: #fff8f6;
    border-left-width: 4px !important;
    border-left-style: solid !important;
    border-left-color: #e74c3c !important;
    border-top: 1px solid #f3d2cd;
    border-right: 1px solid #f3d2cd;
    border-bottom: 1px solid #f3d2cd;
}

/*Gradiente Ultra Elegante*/
.card-exam-urgente-gue {
    background: linear-gradient(
        180deg,
        rgba(231, 76, 60, 0.06) 0%,
        rgba(231, 76, 60, 0.02) 100%
    );
    border: 1px solid rgba(231, 76, 60, 0.15);
    border-left-width: 4px !important;
    border-left-style: solid !important;
    border-left-color: #e74c3c !important;
    border-radius: 10px;
}

/*Recomendado para Worklist Densa*/
.card-exam-urgente-rwd {
    background: linear-gradient(
        180deg,
        rgba(231, 76, 60, 0.05) 0%,
        rgba(231, 76, 60, 0.015) 100%
    );
    border-left-width: 4px !important;
    border-left-style: solid !important;
    border-left-color: #e74c3c !important;
    border-top: 1px solid rgba(231, 76, 60, 0.12);
    border-right: 1px solid rgba(231, 76, 60, 0.12);
    border-bottom: 1px solid rgba(231, 76, 60, 0.12);
}
