.social {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: flex-start;
}

.social li {
    margin-right: 10px;
    /* Ajuste a margem conforme necessário */
}

.social a {
    color: inherit;
    text-decoration: none;
    font-size: 1.5em;
}

.social a:hover {
    color: #007bff;
}

.social .discord a {
    color: blue;
}

.social .facebook1 a {
    color: blue;
}

.form-control {
    border: 1px solid #ced4da;
    /* Cor da borda */
    padding: .375rem .75rem;
    border-radius: .25rem;
}

.form-control:focus {
    border-color: #80bdff;
    /* Cor da borda no foco */
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25);
}

.divider-menu {
    width: 1px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0);
    /* cor da linha */
    margin: 0 15px;
    display: inline-block;
}

.form-label {
    font-size: 20px;
    /* Ajuste o tamanho conforme necessário */
}

/* Centralizar modal verticalmente */
.modal-dialog-centered {
    display: flex;
    align-items: center;
    min-height: calc(100vh - 1rem);
}

/* Escurecer o fundo */
.modal-backdrop.show {
    opacity: 0.8;
    /* valor de opacidade que desejar */
}

/* Aumentar o tamanho do texto no modal de erro */
#errorModalBody {
    font-size: 1.2em;
    /* Aumente o valor conforme necessário */
}

.plane-container {
    position: absolute;
    top: 50%;
    left: 50%;
}

/* Exemplo de estilo adicional para descrição, se precisar */
.table .descricao {
    max-width: 200px;
    word-wrap: break-word;
    white-space: normal;
}

/* Container para permitir rolagem horizontal em telas pequenas */
.table-horarios-container {
    width: 100%;
    overflow-x: auto;
}

/* Estilo base para a tabela */
.table-horarios {
    width: 100%;
    border-collapse: collapse;
}

.table-horarios th,
.table-horarios td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
}

.table-horarios th {
    background-color: #f2f2f2;
}

/* Botões */
.btn-azul,
.btn-verde {
    color: white;
    padding: 5px 10px;
    display: inline-block;
    margin: 2px 0;
    border-radius: 10px;
    /* Borda arredondada */
}

.btn-azul {
    background-color: blue;
}

.btn-verde {
    background-color: green;
}

/* ========================
       LAYOUT "EMPILHADO" NO MOBILE
       E ESCONDER HORÁRIOS SEM EVENTO
       ========================= */

@media screen and (max-width: 768px) {

    /* 1) Ocultar cabeçalho da tabela no mobile */
    .table-horarios thead {
        display: none;
    }

    /* 2) Cada <tr> e <td> vira um bloco vertical */
    .table-horarios tr,
    .table-horarios td {
        display: block;
        width: 100%;
    }

    .table-horarios tr {
        margin-bottom: 1em;
        border-bottom: 1px solid #ddd;
    }

    .table-horarios td {
        text-align: left;
        padding-left: 50%;
        position: relative;
        border: none;
    }

    /* 3) Insere o texto do cabeçalho como rótulo dentro da célula */
    .table-horarios td:before {
        content: attr(data-label);
        position: absolute;
        left: 0;
        width: 45%;
        padding-left: 15px;
        font-weight: bold;
        white-space: nowrap;
    }

    /* 4) Esconder as linhas que não têm evento em nenhum dia */
    .table-horarios tr.sem-evento {
        display: none;
    }
}

.discord-embed {
    width: 100%;
    max-width: 1200px; /* Define a largura máxima para maior telas */
    height: 500px; /* Define uma altura padrão */
}

@media (max-width: 600px) {
    .discord-embed {
        height: 400px; /* Ajusta a altura para telas menores */
    }
}

@media (max-width: 400px) {
    .discord-embed {
        height: 300px; /* Ajusta a altura para telas bem pequenas */
    }
}

.guide {
    margin-bottom: 15px;
    font-size: 1.5em;
}


.highlight {
    color: #32cd32;
    font-weight: bold;
}