
/* Estilos para el header con logo */
.header-with-logo {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.logo-header {
    width: 200px !important;
    height: auto !important;
    flex-shrink: 0;
    max-width: none !important;
}

.header-text {
    flex: 1;
    text-align: left;
}

.header-text h1 {
    margin: 0 0 8px 0;
    font-size: 1.8rem;
}

.header-text p {
    margin: 0;
}

/* Estilos mejorados para la información del usuario */
.user-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    color: #555;
}

.user-info i {
    color: #4a90e2;
}

.user-info strong {
    color: #2c3e50;
    font-weight: 600;
}

.user-role {
    color: #7f8c8d;
    font-style: italic;
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .header-with-logo {
        flex-direction: column;
        text-align: center;
    }
    
    .header-text {
        text-align: center;
    }
    
    .logo-header {
        width: 150px !important;
    }
    
    .user-info {
        justify-content: center;
    }
    
    .header-text h1 {
        font-size: 1.5rem;
    }
}
