.text-label {
    font-size: 1.2em; /* Aumenta o tamanho da fonte do texto */
}

.text-value {
    font-size: 1.2em; /* Aumenta o tamanho da fonte do valor */
}

.container2 {
    background-color: #f8f9fa; /* Fundo cinza claro */
    border-radius: 8px; /* Bordas arredondadas */
    padding: 15px; /* Espaçamento interno */
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 10px;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 5px;
    margin-top: 10px;
}

.grid-item {
    text-align: center;
    padding: 10px;
    font-size: 14px;
    background-color: #e9ecef;
    border-radius: 5px;
}

.bg-opacity-10 {
    background-color: rgba(0, 0, 0, 0.1);
}

.date-input {
    text-align: center;
}

.btn-md {
    padding: 10px 20px;
}

.week-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.datepicker {
    width: 100%;
}

.loader {
    display: none;
}

.entry-div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3px;
}

.entry-div span {
    display: flex;
    align-items: center;
}

#bilhete {
    font-family: 'Courier New', Courier, monospace;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.5;
    padding: 0px;
}

#bilhete h3 {
    font-size: 13px;
    font-weight: 600;
}

#bilhete p {
    margin: 0;
    padding: 0;
}

#bilhete .badge {
    display: inline-block;
    padding: 0.25em 0.4em;
    font-size: 90%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.375rem;
}

.custom-modal-bg {
    background-color: #fff;
    border-radius: 0px;
}

/* Custom scrollbar for WebKit-based browsers */
.custom-modal-bg::-webkit-scrollbar {
    width: 5px; /* Largura da barra de rolagem */
    height: 50px;
}

.custom-modal-bg::-webkit-scrollbar-track {
    background: #f1f1f1; /* Cor do trilho da barra de rolagem */
}

.custom-modal-bg::-webkit-scrollbar-thumb {
    background: #888; /* Cor da barra de rolagem */
}

.custom-modal-bg::-webkit-scrollbar-thumb:hover {
    background: #555; /* Cor da barra de rolagem quando está sendo usada */
}

.loader {
    margin-right: 10px;
}

.card-custom {
    padding: 15px;
    border-radius: 5px;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    color: black;
    margin-bottom: 10px;
}

.card-custom.ativo-false {
    background-color: yellow;
    box-shadow: 2px 2px;
}

.card-custom.ganhou {
    background-color: lightgreen;
    box-shadow: 2px 2px;
}

.card-custom.perdeu {
    background-color: #ff9999;
    box-shadow: 2px 2px;
}

.card-custom.pendente {
    background-color: #ffcc66;
    box-shadow: 2px 2px;
}

.modal-footer.resumo {
    background-color: #fff;
    padding: 15px;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.card-custom2 {
    background-color: #e6e6e6;
    padding: 15px;
    border-radius: 5px;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    color: black;
    width: 100%;
}

.card-custom2 .row {
    margin-bottom: 5px;
    font-size: 0.85em;
}

.card-custom2 .status {
    text-align: right;
    font-weight: bold;
    color: red;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-item {
        font-size: 12px;
        padding: 5px;
    }

    .week-buttons button {
        font-size: 12px;
        padding: 5px;
    }

    #bilhete {
        font-size: 11px;
    }

    #bilhete h3 {
        font-size: 11px;
    }

    .card-custom {
        padding: 10px;
        font-size: 12px;
    }

    .modal-footer.resumo .row {
        font-size: 0.75em;
    }
}

@media (max-width: 480px) {
    .grid-container {
        grid-template-columns: 1fr;
    }

    .grid-item {
        font-size: 10px;
        padding: 3px;
    }

    .week-buttons button {
        font-size: 9px;
        padding: 3px;
    }

    #bilhete {
        font-size: 9px;
    }

    #bilhete h3 {
        font-size: 9px;
    }

    .card-custom {
        padding: 5px;
        font-size: 10px;
    }

    .modal-footer.resumo .row {
        font-size: 0.65em;
    }

  .datepicker {
     font-size: 9px;
  }
}

@media (min-width: 768px) {
    .text-label, .text-value {
        font-size: 1.3em; /* Aumenta o tamanho da fonte em telas maiores */
    }
}
