
/* Reset des marges et des rembourrages */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f1f3f7;
}

/* Conteneur principal avec fond blanc centré sur 75% de la page */
.container {
    width: 75%;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
}

/* Styles pour la barre de recherche avec icône */
#search-box {
    border-radius: 5px;
    border-color: transparent;
    padding: 5px;
    font-size: 16px;
    width: 30%;
    margin-left: 25%;
    margin-right: 1%;
    background-color: rgba(207, 207, 207, 0.568);
}

.card-container {
    display: flex; /* Utilisation de flexbox pour aligner les cartes côte à côte */
    justify-content: space-around; /* Espace équitable entre les cartes */
    margin-top: 20px;
}

.card {
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 300px;
}

.card-body {
    padding: 15px;
}

.service-logo img {
    max-width: 100px;
    max-height: 100px;
    display: block;
    margin: 0 auto 10px;
}

.service-details h5 {
    text-align: center;
    margin-bottom: 10px;
}

.service-details a {
    display: block;
    text-align: center;
    margin-bottom: 15px;
    color: #3b76e1;
}

/* Styles pour la barre de progression améliorée */
.progress-container {
    width: 100%;
    height: 25px;
    background-color: #f5f5f5;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    margin-bottom: 10px;
}

.progress-bar {
    height: 100%;
    width: 0;
    background-color: #3b76e1;
    border-radius: 5px;
    transition: width 0.5s ease-in-out;
}

.progress-fill {
    height: 100%;
}

.progress-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
}

/* Styles pour les boutons */
.btn {
    border-radius: 5px;
    padding: 8px 16px;
    margin-right: 10px;
    cursor: pointer;
}

.btn-primary {
    background-color: #3b76e1;
    color: #fff;
    border: none;
}

.btn-link {
    background: none;
    border: none;
    color: #3b76e1;
    cursor: pointer;
}

/* Styles pour les titres */
h5 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Styles pour les liens */
a {
    text-decoration: none;
    color: #3b76e1;
}

a:hover {
    text-decoration: underline;
}

/* Styles CSS pour le tableau */
table {
    border-collapse: collapse;
    width: 100%;
}

/* Lignes horizontales grises */
table th,
table td {
    border-bottom: 1px solid #dddddd;
    padding: 8px;
}

/* Cases de fichier blanches pour les lignes paires */
table tbody tr:nth-child(even) td {
    background-color: #ffffff;
}

/* Cases de fichier transparentes pour les lignes impaires */
table tbody tr:nth-child(odd) td {
    background-color: transparent;
}

/* Couleur de fond des titres */
table th {
    background-color: #f2f2f2;
    color: #666666;
}

/* Couleur du texte des cellules */
table td {
    color: #333333;
}

/* Supprime les lignes verticales pour la première colonne */
table th:first-child,
table td:first-child {
    border-left: none;
}
table img {
    width: 20px;
    height: 20px;
}