/* Styles pour la section topLine */
.topLine {
    background-color: #2f2f2f;
    padding: 20px;
    text-align: center;
}

.titresProfile {
    color: #f2f2f2;
}

.pictureProfile {
    width: 100%;
    max-width: 300px;
    height: auto;
    padding: 2em;
    margin: 0 auto;
}

/* Media queries pour centrer la section topLine */
@media screen and (max-width: 576px) {
    .topLine {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .titresProfile {
        font-size: 1em;
    }

    .pictureProfile {
        max-width: 250px;
        padding: 1em;
    }
}

/* Styles pour la barre de recherche et les filtres */
.searchBar {
    margin-top: 30px;
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.filters select,
.filters button {
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 4px;
}

.filters button {
    background-color: #333;
    color: #fff;
    border: none;
    cursor: pointer;
}

/* Styles pour les éléments de trace */
.row {
    margin-left: -15px;
    margin-right: -15px;
}

.col-md-4 {
    padding: 15px;
}

.trace-item {
    background-color: #f4f4f4;
    padding: 20px;
    text-align: center;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.trace-image {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
    border-radius: 4px;
}

.trace-name {
    margin-top: 10px;
    font-size: 18px;
    font-weight: bold;
}

/* Styles pour l'effet de survol (hover) */
.trace-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Media queries pour le rendu responsive */
@media screen and (max-width: 992px) {
    .pictureProfile {
        max-width: 250px;
        padding: 1em;
    }
}

@media screen and (max-width: 768px) {
    .searchBar {
        flex-direction: column;
    }

    .filters select,
    .filters button {
        width: 100%;
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 576px) {
    .trace-item {
        padding: 15px;
    }

    .trace-name {
        font-size: 16px;
    }
}

.Ajouter-une-trace {
    text-align: center;
}

.Ajouter-une-trace a {
    display: inline-block;
    padding: 8px 16px;
    font-size: 14px;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
}

.Ajouter-une-trace a:hover {
    background-color: #555;
}
