/* === Layout principal === */
.content-aniversariantes {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.content-aniversariantes .content-aniversariantes {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    width: 90%;
    max-width: 1200px;
}

/* === Abas de meses === */
.content-aniversariantes .aba-meses {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 1rem 0;
}

.content-aniversariantes .mes-aba {
    padding: 0.5rem 1rem;
    margin: 0.3rem;
    background-color: #fff;
    color: #555;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.content-aniversariantes .mes-aba.active {
    background-color: #000;
    color: #fff;
}

/* === Lista de aniversariantes === */
.content-aniversariantes .lista-aniversariantes {
    flex: 2;
    padding: 1rem;
    border-radius: 10px;
}
.lista-aniversariantes .item-aniversariante {
    line-height: 35px;
}

.lista-aniversariantes .item-aniversariante:hover {
    background-color: #bbb;
}

.lista-aniversariantes .item-aniversariante.active {
    background-color: #bbb;
}

.lista-aniversariantes .item-aniversariante.bolo::before {
    content: "🎂";
    margin-right: 0.5rem;
}

.lista-aniversariantes .item-aniversariante .data {
    font-weight: bold;
}
.lista-aniversariantes .item-aniversariante .nome::before {
    content: " - ";
}

/* === Detalhes do aniversariante === */
.content-aniversariantes .aniversariante-detalhe {
    background-color: #fff;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
    font-size: 0.95rem;
    color: #333;
}

.aniversariante .aniversariante-detalhe .medalha-container {
    position: relative;
    width: 150px;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}

.aniversariante .aniversariante-detalhe .medalha-fundo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 1;
}

.aniversariante .aniversariante-detalhe .escudo-clube {
    position: absolute;
    top: 22%;
    width: 60px;
    height: 60px;
    object-fit: contain;
    z-index: 2;
    border-radius: 50%;
}

.aniversariante .clube-dado .descricao { 
    font-weight: bold;
}

.aniversariante .clube-nome {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-align: center;
}
.aniversariante .clube-idade {
    font-size: 1.0rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-align: center;
}

.aniversariante .clube-info {
    flex: 1;
    padding: 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    color: #333;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.aniversariante .clube-info h3 {
    margin-top: 0;
    font-size: 1.2rem;
    color: #d4af37;
}

/* === Layout em colunas (esquerda/direita) === */
.aniversariante {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    margin-top: 1rem;
    width: 100%;
    flex-wrap: wrap;
}

.aniversariante .esquerda {
    flex: 1;
    min-width: 300px;
    background-color: #fff;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.aniversariante .direita {
    flex: 2;
    min-width: 400px;
    padding: 1rem;
    border-radius: 10px;
}
