body {
    font-family: 'Times New Roman', serif;
    font-size: 20px;
    background-image: url('https://img.freepik.com/vetores-gratis/fundo-branco-e-cinza-brilhante-com-linhas-onduladas_1017-25101.jpg?w=2000');
    background-size: cover;
    background-attachment: fixed;
}

h1.text-center {
    color: rgb(82, 3, 3);
    font-weight: bold;
    font-family: 'Tormenta', sans-serif;
    font-size: 48px;
}

.custom-container {
    width: 80%;
    max-width: 1000px;
    margin: 20px auto;
    background-color: #f5f5f56e;
    padding: 20px;
    border-radius: 10px;
}

.selector-button {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

.selector-button:hover {
    transform: rotate(360deg);
}

.selector-icon {
    width: 70px;
    height: auto;
}

.options-box {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    background-color: #e0debf;
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 10px;
    cursor: move;
    z-index: 1000;
}

.toggle {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
    margin-right: 10px;
}

.toggle input[type="checkbox"] {
    display: none;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    border-radius: 20px;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    border-radius: 50%;
    transition: .4s;
}

input[type="checkbox"]:checked+.slider {
    background-color: #007bff;
}

input[type="checkbox"]:checked+.slider:before {
    transform: translateX(20px);
}

.outros-col {
    display: none;
}

.outros-col.show {
    display: table-cell;
}

.destaque-mensagem {
    background-color: #000000;
    padding: 10px;
    color: white;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 10px;
}

.table {
    margin-top: 20px;
    background-size: 75% auto;
    background-position: center center;
    background-repeat: no-repeat;
}

.table th,
.table td {
    padding: 8px;
    text-align: center;
    border: 1px solid transparent;
    border-radius: 20px;
    background-color: rgba(231, 226, 226, 0.5);
    width: auto;
}

.total-col {
    font-weight: bold;
    font-size: 24px;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: transparent;
    border: none;
    font-size: 18px;
    cursor: pointer;
    z-index: 1;
}

.close-button:hover {
    color: red;
}

.container-flex {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.column-left {
    width: 45%;
}

.column-right {
    width: 55%;
}

.section-title {
    color: rgb(82, 3, 3);
    font-weight: bold;
    font-family: 'Tormenta', sans-serif;
    font-size: 24px;
}

#pontos_disponiveis {
    font-weight: bold;
    font-size: 25px;
}

input[type="number"]:disabled {
    background-color: #e9ecef;
    opacity: 0.7;
    cursor: not-allowed;
}

@font-face {
    font-family: 'Tormenta';
    /* Isso procura o arquivo na mesma pasta do style.css */
    src: url('Tormenta.ttf') format('truetype');
}

/* Adicione esta regra ao seu style.css */
.hidden {
    display: none;
}

/* Estilos para Dispositivos Móveis */
@media (max-width: 768px) {
    .container-flex {
        flex-direction: column; /* Empilha as colunas */
        gap: 30px; /* Aumenta o espaço entre as seções empilhadas */
    }

    .column-left,
    .column-right {
        width: 100%; /* Faz cada coluna ocupar a largura total */
    }

    h1.text-center {
        font-size: 36px; /* Reduz o tamanho do título principal */
    }

    .selector-button {
        top: 10px;
        right: 10px;
    }

    .selector-icon {
        width: 50px; /* Diminui o ícone de engrenagem */
    }

    .custom-container {
        width: 95%; /* Ocupa mais espaço na tela do celular */
        margin: 10px auto;
        padding: 15px;
    }
}
