.numbers-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 2rem;
}

.get-number{
    display: none;
}


.page-link {
    color: #fff;

    text-align: center;
    border: 1px #ffff solid;
    padding: 0.375rem 0.75rem;
}

.page-link:focus{
    color: #2C2C2C;

}
.tabla-scroll {
    max-height: 400px; /* Ajusta esta altura según tus necesidades */
    overflow-y: auto;
}

.n.hidden{
    display: none;
}

.page-link:hover{
    color: #2C2C2C;
}

.n {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 40px;
    background-color: #F6F6F6;
    border-radius: .25rem;
    cursor: pointer;
    padding: 10px;
    margin-bottom: 5px;
}

.n p {
    color: #ffff;
    font-weight: 900;
    font-size: 12px;
    margin-bottom: 0px;
}

.cuerpo{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
}


.n{
    font-size: 12px;
    font-weight: 600;
    background-color: #F6F6F6 ;
}

.n:hover {
    background-color: #F6F6F6;
}

.n.activa {
    background-color: #2C2C2C;
    color: white;
}

.n.desactivada {
    background-color: #7a1717;
    cursor: not-allowed;
}


button {
    font-size: 16px !important;
}

.pagination {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

#items {
    display: flex;
}

.page-item  button{
    color: #000;
    background-color: #F6F6F6;
    list-style: none;
    text-decoration: none;
}


.row-numbers {
    display: flex;
    align-items: center;
    height: 100vh;
    margin: 0;
}

#formulario {
    margin: auto;
}

.button {
    border-radius: 4px;
    padding: 16px 24px 17px;
    color: #fff;
    border: none;
    outline: 0;
    background: #ccc;
    font-size: 16px;
    font-weight: 500;
    vertical-align: top;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    letter-spacing: normal !important;
    position: relative;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.1);
    -webkit-appearance: none;
    margin-bottom: 10px;
    transition: 0.3s;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
}

.blue {
    background: #2C2C2C !important;
    color: #fff !important;
}

.bigText{
    display: block;
    font-weight: 900;
    font-size: xx-large;
    color: #202020;
    text-align: center;
    margin: 16px 0;
}


.numbers {
    display: flex;
    align-items: center;
}

.active>.page-link, .page-link.active{
    background-color: #3454e2b3;
    border-color: #3454e2b3;
    color: #fff
}

.box-select{
    display: flex;
    justify-content: center;
    gap: 5px;
    flex-wrap: wrap;
}

.n-select{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 12px;
    width: 56px;
    padding: 0 0.5rem;
    height: 32px;
    background-color: #2C2C2C;
    color: white;
    font-weight: 600;
    border-radius: .25rem;
  }

.n-select i{
    position: absolute;
    top: -5px;
    right: 0;
    background-color: #fff;

}

@media only screen and (max-width: 1080px) {
    .page-item {
        display: flex;
        align-items: center;
      }
    
      #items {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
      }
    

}

.triple-group {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 10px;
    background-color: #f9f9f9;
  }
  
  .triple-group-title {
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
    font-size: 0.9em;
  }
  
  .triple-numbers-container {
    display: flex;
    gap: 8px;
    justify-content: space-between;
  }
  
  .triple-number {
    flex: 1;
    text-align: center;
    padding: 8px;
    border-radius: 4px;
    background-color: #f0f0f0;
    transition: all 0.2s;
  }
  
  .triple-number:hover {
    background-color: #e0e0e0;
  }
  
  .special-number {
    background-color: #e7f3fe;
    margin: 10px 0;
    padding: 10px;
    border-radius: 4px;
    border-left: 3px solid #2196F3;
  }
  
  .n.activa {
    background-color: #4CAF50;
    color: white;
  }

  .triple-group-selected {
    display: inline-flex;
    border-radius: 6px;
    margin: 2px;
  }
  
  .triple-group-selected .n-select {
    border: none;
    margin: 0;
    border-radius: 0;
  }
  
  .triple-group-selected .n-select:last-child {
    border-right: none;
  }
  
  .n-select {
    padding: 6px 12px;
    margin: 2px;
    border-radius: 4px;
    display: inline-block;
    position: relative;
  }
