.scd-table-order {
	cursor:pointer;
}

body {
            background-color: #f8f9fa; /* Fond gris très clair et sobre */
            min-height: 100vh;
        }
        .login-container {
            max-width: 420px;
            width: 100%;
        }
        .login-card {
            border: none;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); /* Ombre très légère */
            background-color: #ffffff;
        }
        .brand-logo {
            font-size: 2.5rem;
            font-weight: 700;
            color: #0d6efd; /* Bleu Bootstrap standard */
            letter-spacing: -1px;
        }
        .brand-sub {
            font-size: 0.9rem;
            color: #6c757d;
        }
        .input-group-text {
            background-color: #f8f9fa;
            color: #6c757d;
            border-right: none;
        }
        .form-control {
            border-left: none;
        }
        .form-control:focus {
            border-color: #dee2e6;
            box-shadow: none;
        }
        .input-group:focus-within .input-group-text,
        .input-group:focus-within .form-control {
            border-color: #86b7fe; /* Lueur bleue soft au focus */
        }
        .btn-login {
            background-color: #86b7fe;
            border: none;
            color: #ffffff;
            font-weight: 600;
            padding: 0.6rem;
            transition: background-color 0.2s;
        }
        .btn-login:hover {
            background-color: #0d6efd;
            color: #ffffff;
        }
		
		@media (max-width: 767.98px) {
    /* On force la table, le tbody et les tr à se comporter comme des blocs empilés */
    .responsive-table-cron, 
    .responsive-table-cron tbody, 
    .responsive-table-cron tr { 
        display: block; 
        width: 100%;
    }
    
    /* On transforme chaque ligne de tableau en une "carte" stylisée */
    .responsive-table-cron tr {
        background: #ffffff;
        border-bottom: 1px solid #e9ecef;
        padding: 12px 16px;
        margin-bottom: 0px;
    }
    
    .responsive-table-cron tr:nth-child(even) {
        background-color: #f8f9fa; /* Alternance de couleur subtile sur mobile */
    }

    /* On aligne les cellules en lignes verticales (Clé : Valeur) */
    .responsive-table-cron td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: right;
        padding: 6px 0;
        border: none;
        font-size: 0.9rem;
    }

    /* On force la première cellule (le nom de la tâche) à se mettre en valeur tout en haut */
    .responsive-table-cron td:first-child {
        font-weight: bold;
        font-size: 1.05rem;
        color: #0d6efd;
        padding-bottom: 8px;
        border-bottom: 1px dashed #dee2e6;
        margin-bottom: 8px;
    }

    /* Ajustement spécifique pour la cellule des boutons d'actions en bas */
    .responsive-table-cron td:last-child {
        padding-top: 10px;
        justify-content: flex-end;
        gap: 8px;
    }

    /* Masquer les labels vides ou inutiles sur mobile (ex: le titre principal déjà en gras) */
    .responsive-table-cron td:first-child::before,
    .responsive-table-cron td:last-child::before {
        content: "" !important;
    }
}





@media (max-width: 767.98px) {
    /* Transformation des éléments du tableau des logs en blocs verticaux */
    .responsive-table-f2blogs, 
    .responsive-table-f2blogs tbody, 
    .responsive-table-f2blogs tr { 
        display: block; 
        width: 100%;
    }
    
    .responsive-table-f2blogs tr {
        background: #ffffff;
        border-bottom: 1px solid #dee2e6;
        padding: 10px 12px;
    }

    .responsive-table-f2blogs td {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        text-align: right;
        padding: 5px 0;
        border: none;
    }

    /* La première cellule (la date) sert d'entête de bloc */
    .responsive-table-f2blogs td:first-child {
        font-weight: bold;
        color: #6c757d;
        border-bottom: 1px dashed #e9ecef;
        padding-bottom: 6px;
        margin-bottom: 6px;
    }

    /* Forcer l'affichage de l'attribut data-label à gauche */
    .responsive-table-f2blogs td::before {
        content: attr(data-label);
        font-weight: 600;
        color: #495057;
        text-align: left;
        padding-right: 15px;
        white-space: nowrap;
    }

    /* Nettoyage des labels sur la date et le bouton */
    .responsive-table-f2blogs td:first-child::before,
    .responsive-table-f2blogs td:last-child::before {
        content: "" !important;
    }

    /* Aligner le bouton d'action (Bannir) tout à droite en bas */
    .responsive-table-f2blogs td:last-child {
        padding-top: 8px;
        justify-content: flex-end;
    }
}

/* Animation fluide au survol */
.card-settings {
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    border: 1px solid #edf2f7; /* Bordure très discrète */
}

.card-settings:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
    background-color: #ffffff;
}

/* On force un arrondi plus généreux (Style iOS/Modern) */
.rounded-xl {
    border-radius: 1.25rem !important;
}

/* Conteneur d'icône avec fond pastel */
.icon-shape {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
}