
       .container-fluid {
    background-color: #f8f9fa;
    max-width: 991px;
    margin-bottom: 70px;
    margin-left: 240px; /* marge fixe pour grand écran */
    padding: 15px;
}

/* Pour arrondir les coins des cartes */
.card {
    border-radius: 12px;
}

/* Alignement vertical des cellules du tableau */
.table th, .table td {
    vertical-align: middle;
}

/* Responsive : pour écrans moyens et petits (tablettes, mobiles) */
@media (max-width: 1200px) {
    .container-fluid {
        max-width: 766px;
        margin-left: 150px; /* réduire la marge à gauche */
        padding: 15px;
        margin-bottom: 50px;
    }
}

@media (max-width: 768px) {
    .container-fluid {
        margin-left: 250px; /* enlever la marge gauche sur petits écrans */
        padding: 10px;
        max-width: 100%;
        margin-bottom: 50px;
    }

    /* Facultatif : rendre la table scrollable horizontalement sur mobile */
    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch; /* pour inertie sur iOS */
    }
}
  


   .main-container {
            margin-left: 200px;
            max-width: 1200px;
            padding: 20px;
            font-family: 'Segoe UI', sans-serif;
        }

        .title-header {
            text-align: center;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 2rem;
            color: #0d6efd;
        }

        .link-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            border-radius: 1rem;
            background-color: white;
            padding: 1rem 1.2rem;
            height: 100%;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
        }

        .link-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }

        .link-icon {
            font-size: 2rem;
            color: #0d6efd;
            margin-right: 15px;
        }

        .card-title {
            margin: 0;
            font-size: 1.1rem;
            font-weight: 600;
        }

        .card-subtitle {
            font-size: 0.9rem;
            color: #6c757d;
        }