/* Portail Professeurs - Styles complémentaires */

/* Scrollbar fine */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 3px; }

/* Cards hover */
.card-classe {
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.card-classe:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Table row hover */
.table-eleve tr:hover td {
    background-color: #f0f9ff;
}

/* Badge couleur note */
.badge-note {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    padding: 0.125rem 0.5rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.8rem;
}
.badge-vert { background-color: #dcfce7; color: #166534; }
.badge-orange { background-color: #fef3c7; color: #92400e; }
.badge-rouge { background-color: #fee2e2; color: #991b1b; }

/* Tendance */
.trend-up { color: #16a34a; }
.trend-down { color: #dc2626; }
.trend-stable { color: #6b7280; }

/* Chart containers */
.chart-container {
    position: relative;
    width: 100%;
}

/* Timeline phases */
.phase-progression { background-color: #dcfce7; border-left: 3px solid #16a34a; }
.phase-regression { background-color: #fee2e2; border-left: 3px solid #dc2626; }

/* Login page */
.login-bg {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
}

/* Select2-like dropdown */
.prof-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}
