

        h2 {
            text-align: center;
            margin-bottom: 1.5rem;
            color: #4f46e5;
        }

        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        input[type="email"],
        input[type="password"] {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid #d1d5db;
            border-radius: 0.5rem;
            font-size: 1rem;
            margin-bottom: 1rem;
        }

        input[type="email"]:focus,
        input[type="password"]:focus {
            border-color: #6366f1;
            outline: none;
        }

        .remember-forgot {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .remember-forgot label {
            display: flex;
            align-items: center;
            font-size: 0.875rem;
        }

        .remember-forgot a {
            font-size: 0.875rem;
            color: #6366f1;
            text-decoration: none;
        }

        .remember-forgot a:hover {
            text-decoration: underline;
        }

        .btn-submit {
            width: 100%;
            padding: 0.75rem;
            background-color: #4f46e5;
            color: white;
            border: none;
            border-radius: 0.5rem;
            font-size: 1rem;
            cursor: pointer;
        }

        .btn-submit:hover {
            background-color: #4338ca;
        }

        .error {
            color: #dc2626;
            font-size: 0.875rem;
            margin-bottom: 1rem;
        }

        .status-message {
            background: #d1fae5;
            color: #065f46;
            padding: 0.75rem;
            border-radius: 0.5rem;
            margin-bottom: 1rem;
            text-align: center;
        }
/*pour le dashboard */
 /* Gardez vos styles existants et ajoutez : */
        .dropdown-menu {
            z-index: 1060 !important; /* Supérieur à tout le reste */
        }

        .dataTables_wrapper .dropdown-menu {
            position: absolute !important;
        }
        body {
            background-color: #f0f4f8;
            padding-top: 120px;
            margin: 0;
            width: 100%;
            overflow-x: hidden;
        }

        /* Barre Utilisateur */
        .user-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 102;
            background-color: #e3ecf6;
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            height: 90px;
        }

        /* Menu Utilisateur Amélioré */
        .user-info-container {
            display: flex;
            align-items: center;
            height: 100%;
            position: relative;
        }

        .user-info {
            height: 100%;
            display: flex;
            align-items: center;
        }

        .user-name {
            background-color: rgba(0, 123, 255, 0.2);
            color: #2c3e50;
            padding: 8px 15px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: all 0.3s ease;
            cursor: pointer;
            font-weight: 500;
        }

        .user-name:hover {
            background-color: rgba(0, 123, 255, 0.3);
        }

        .user-dropdown {
            display: none;
            position: absolute;
            right: 0;
            top: 100%;
            margin-top: 5px;
            background: #fff;
            border: 1px solid #ccc;
            border-radius: 8px;
            min-width: 180px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            z-index: 1000;
            overflow: hidden;
        }

        .user-dropdown.active {
            display: block;
        }

        .dropdown-item {
            display: block;
            padding: 10px 15px;
            text-decoration: none;
            color: #333;
            font-size: 14px;
            transition: background 0.2s;
        }

        .dropdown-item:hover {
            background-color: #f5f5f5;
        }

        .dropdown-item:not(:last-child) {
            border-bottom: 1px solid #eee;
        }

        /* Barre Navigation Fixe */
        .navbar-container {
            margin-top: 40px;
            position: fixed;
            top: 50px;
            left: 0;
            right: 0;
            z-index: 101;
            background-color: #007bff;
            padding: 10px 0;
            width: 100%;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            display: flex;
            justify-content: center;
        }

        .dropdown-btn.active {
            background-color: #0056b3;
            font-weight: bold;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }

        .dropdown {
            position: relative;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            background-color: #007bff;
            min-width: 160px;
            box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
            z-index: 1;
            border-radius: 5px;
            left: 50%;
            transform: translateX(-50%);
        }

        .dropdown-content a {
            color: white;
            padding: 12px 16px;
            text-decoration: none;
            display: block;
            text-align: center;
        }

        .dropdown:hover .dropdown-content {
            display: block;
        }



        /* Responsive */
        @media (max-width: 768px) {

            .user-name {
                padding: 6px 12px;
                font-size: 0.9rem;
            }
        }

