body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
}

header {
    background-color: #6200ea;
    color: white;
    padding: 10px;
    text-align: center;
    width: 100%;
}

main {
    margin: 20px;
}

#reunioes-container {

    justify-content: center;
}

#cultos-container {

    justify-content: center;
}

.buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.btn {
    background-color: #D4D9E2;
    color: black;
    border: none;
    border-radius: 5px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    width: 120px;
}

.btn img {
    width: 50px;
    height: 50px;
    margin-bottom: 5px;
}

.hidden {
    display: none;
}

table {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
}

table, th, td {
    border-bottom: 1px solid black;
}

th, td {
    padding: 10px;
    text-align: left;
}

th {
    background-color: #e0e0e0;
}

/* Remover bordas laterais */
td {
    border-left: none;
    border-right: none;
}

/* Efeito de hover e active */
tr {
    transition: background-color 0.2s ease;
}

tr:hover {
    background-color: #f3f3f3; /* Efeito ao passar o mouse */
    cursor: pointer;
}

tr:active {
    background-color: #d1d1d1; /* Efeito ao pressionar */
}

/* Alternativa de destaque para dispositivos com foco (teclado) */
tr:focus {
    outline: none;
    background-color: #d1d1d1;
}
