
body {
    font-family: Arial, sans-serif;
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
}
.container-tv {
    display: flex;
    min-width: 100vw !important;
    height: 100vh;
}

.sidebar-left {
    left: 0;
    bottom: 0;
    min-width: 159px;
    width: 25vw;
    background-color: black;
    border-right: 1px solid #ccc;
    overflow:scroll;
    text-align: center;
    margin: 4px;
    padding: 5px;
    border-radius: 10px;
    z-index: 9;
    /* height: fit-content; */
}

.sidebar-left-title{
    width: 20vw;
    min-width: 142px;
    position: absolute;
    background-color: white;
    color:black;
    margin: 0px 5px 2px 2px;
    border-radius: 5px;
    font-weight: bold;
}


.labels-container {
    display: flex;
    flex-wrap: wrap;
}

.label-item {
    flex: 1; /* Cada label ocupa uma parte igual do espaço disponível */
    max-width: calc(100% - 10px); /* Largura máxima do label, considerando a margem */
    margin: 5px; /* Espaçamento entre os labels */
}


.sidebar-right {
    right: 0;
    bottom: 0;
    width: 25vw;
    background-color: black;
    border-right: 1px solid #ccc;
    overflow:scroll;
    text-align: center;
    margin: 4px;
    padding: 5px;
    border-radius: 10px;
    z-index: 9;
    /* height: fit-content; */
}



#includedBlockLotteryDrawPage {
    align-items: center; /* Centraliza verticalmente */
    justify-content: center; /* Centraliza horizontalmente */
    flex: 1;
    width: 100vw; /* Ensure width spans entire viewport */
    height: 100vh;
    /* position: absolute; */
    /* bottom: 0; */
    overflow: hidden;
    text-align: center; /* Align contents to the center */
    padding-top: 12px;
    padding-right: 4px;
    padding-bottom: 0px;
    padding-left: 4px;
    border-radius: 10px;
}

/* Estilos adicionais quando a altura é menor que 670px */
@media screen and (min-height: 500px) and (max-width: 500px) {
    #includedBlockLotteryDrawPage {
        position: absolute;
        /* top: 0; */
        height: 49.5%;
    }
    .sidebar-left {
        left: 0;
        bottom: 0;
        width: 48.5vw;
        height: 50%;
        position: absolute;
    }

    .sidebar-right {
        right: 0;
        bottom: 0;
        width: 48.5vw;
        height: 50%;
        position: absolute;
    }
    .sidebar-left-title {
        width: 45vw;
        color: black;
        margin: 2px;
    }
    .table-text {
        font-size: 0.8em !important;
    }
}

@media screen and (max-height: 500px) and (min-width: 321px) {
    #includedBlockLotteryDrawPage {
        top: 0;
        height: 100vh;
    }

    .sidebar-left {
        width: 22vw;
    }

    .sidebar-right {
        width: 22vw;
    }
    .table-text {
        font-size: 0.8em !important;
    }
}


.tableTypePayment {
    width: 100%;
    color: #fff;
    margin-top: 5px;
    /* margin-left: 8px; */
}
.tableTypePayment th,
.tableTypePayment td {
    font-weight: bold;
    /* font-size: 1.2em; */
}


.block-lotteries-payments{
    margin:5px;
    margin-top:7px;
    margin-right:7px;
    text-align:center;
    min-height:145px; min-width:61px;
    padding:5px;
    border-radius: 10.399px;
    border: 0.65px solid #FFF;
    background: #FFF;
    box-shadow: 6.499px 2.6px 2.6px 0 #fff;
    color:black;
    /* text-shadow: 2px 2px 8px #fff; */
}
.input-container {
    display: inline-block;
    position: relative;
  }

  .input-date-result {
    background-color: transparent;
    border: 2px solid #ccc;
    border-radius: 5px;
    padding: 5px;
    width: 100%;
    /* color: #fff !important; */
    font-size: 1em; /* Alterando o tamanho da fonte para uma unidade relativa */
    outline: none;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
  }

  .input-date-result:focus {
    border-color: #007bff;
  }

  /* Estiliza a seta do input date */
  .input-date-result::-webkit-calendar-picker-indicator {
    filter: invert(50%);
    cursor: pointer;
  }
/* Estilo padrão para telas maiores */
.table-text {
    font-size: 1.5em;
    font-weight: bold;
}

