/* Style page interclubs.php */

.blocs-equipes {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    margin: 10px;
    padding: 10px;
}

#equipe-1 {
    background-color: var(--vert-club);
}

#equipe-2 {
    background-color: #aae7cd;
}

.equipe {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    margin: 10px;
    border: 1px solid #000;
    border-radius: 5px;
    background-color: #f0f0f0;
    width: 45%; /* Adjusted width to ensure blocks fit within container */
}

.equipe h2 {
    color: white;
    margin: 7%;
    font-family: 'BernardMTCondensed';
    letter-spacing: 1.3px;
}

.equipe ul {
    list-style-type: none;
    padding: 0;
    margin: 0; 
    width: 70%; /* width of container taken by ul */
}

.equipe ul li {
    text-align: left;
    padding: 10px 0; /* Uniform padding for top and bottom */
    margin: 0 0 10px 0;
}

.texte-desc-equipe{
    color: white;
    font-size: 120%;
    font-family: 'BernardMTCondensed';
    letter-spacing: 1.3px;
    width: 90%;
    padding: 10%;
}