/* 
   Estilos específicos para el Historial Médico de Mascotas
   Módulo: Veterinaria / Panel Médico
*/

.admin-header {
    background: linear-gradient(135deg, #1a5276 0%, #2980b9 100%);
    border-radius: 20px;
    padding: 30px;
    color: white;
    box-shadow: 0 10px 30px rgba(26, 82, 118, 0.2);
    margin-bottom: 40px;
}

.info-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border: none;
    height: 100%;
}

.section-title {
    color: #1a5276;
    font-weight: 800;
    font-size: 1.25rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background-color: #1a5276 !important;
    border-color: #1a5276 !important;
}

.btn-primary:hover {
    background-color: #14425e !important;
    border-color: #14425e !important;
}

.btn-outline-primary {
    border-color: #1a5276 !important;
    color: #1a5276 !important;
}

.btn-outline-primary:hover {
    background-color: #1a5276 !important;
    color: white !important;
}

.btn-pill {
    border-radius: 50px;
    padding: 8px 25px;
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timeline-item {
    padding: 20px;
    border-radius: 15px;
    background: #f8f9fa;
    border-left: 4px solid #1a5276;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.timeline-item:hover {
    transform: scale(1.01);
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.form-label {
    font-weight: 700;
    color: #444;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control {
    border-radius: 12px;
    padding: 12px;
    border: 1px solid #eee;
    background-color: #f8f9fa;
}

.form-control:focus {
    background-color: white;
    border-color: #2980b9;
}

.badge-status {
    padding: 6px 14px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.5px;
}

/* Utilidades Finales - Historial Médico */
.vet-avatar-sm {
    width: 24px;
    height: 24px;
    font-size: 0.6rem;
    background: var(--brand-primary, #1a5276);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
