/**
 * Styles pour le tableau de bord Faculty (Direction/Doyen)
 * 
 * @package Soft_Academia_SM
 * @since 1.0.0
 */

/* Les styles sont directement intégrés dans le template pour plus de cohérence et performances */
/* Ce fichier peut être utilisé pour des styles additionnels si nécessaire */

/* Reset de base pour le dashboard */
.saspm-faculty-dashboard-page .site-header,
.saspm-faculty-dashboard-page .site-footer,
.saspm-faculty-dashboard-page .site-navigation {
    display: none !important;
}

.saspm-faculty-dashboard-page .site-content {
    padding: 0 !important;
    margin: 0 !important;
}

.saspm-faculty-dashboard-page #primary {
    width: 100% !important;
    max-width: 100% !important;
}

/* Masquer la barre d'admin pour un affichage fullscreen */
body.saspm-faculty-dashboard-page {
    margin-top: 0 !important;
}

/* Scrollbar personnalisée pour le sidebar */
.saspm-faculty-sidebar::-webkit-scrollbar {
    width: 8px;
}

.saspm-faculty-sidebar::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

.saspm-faculty-sidebar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.saspm-faculty-sidebar::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Animations supplémentaires */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.saspm-stat-card {
    animation: fadeIn 0.6s ease-out;
}

.saspm-stat-card:nth-child(1) { animation-delay: 0.1s; }
.saspm-stat-card:nth-child(2) { animation-delay: 0.2s; }
.saspm-stat-card:nth-child(3) { animation-delay: 0.3s; }
.saspm-stat-card:nth-child(4) { animation-delay: 0.4s; }

/* Print styles */
@media print {
    .saspm-faculty-sidebar,
    .saspm-quick-actions {
        display: none !important;
    }
    
    .saspm-faculty-dashboard {
        grid-template-columns: 1fr;
    }
}
