.tittle {
    color: white;
    height: 50px;
}

ul {
    list-style: none;
}

.div1 {
    background-color: #99c14c;
    border-radius: 20px;
    border: 2px solid white;
    position: relative;
    top: 50px;
    padding: 20px
}

body .delete.btn-secondary {
    border-radius: 20px;
    border-color: white;
}


body .btn-primary {
    background-color: #75ab03;
    border-color: white;
    color: #FFF;
    /* border-radius: 20px; */
}

/* body .btn-primary:hover,
  body .btn-primary:focus {
      border-color: white;
      background-color: #75ab03;
      color: #FFF;
  }

  body .btn-primary:active,
  body .btn-primary:visited,
  body .btn-primary:active:focus,
  body .btn-primary:active:hover {
      border-color: white;
      background-color: #75ab03;
      color: #FFF;
  } */


body .btn-outline-secondary {
    background-color: #a1a39e;
    border-color: #a1a39e;
    color: #FFF;
}

body .btn-outline-secondary:hover,
body .btn-outline-secondary:focus {
    border-color: #a1a39e;
    background-color: #a1a39e;
    color: #FFF;
}

body .btn-outline-secondary:active,
body .btn-outline-secondary:visited,
body .btn-outline-secondary:active:focus,
body .btn-outline-secondary:active:hover {
    border-color: #a1a39e;
    background-color: #a1a39e;
    color: #FFF;
}



.fullscreen {

    position: absolute;
    width: 100%;
    top: 71px;
    bottom: 0;
    overflow-y: scroll;
    /* bottom: 0px; */
    /* min-height: 100vh; */
    /* height:auto;
    display: block;
    margin-bottom: 0px;
    padding-bottom: 0px; */
    background-color: #54c101
}

.navbar {
    height: 71px;
    font-family: "Poppins", Sans-serif;
    font-weight: 550;
    font-size: 15px;
}

.image-clasification,
.image-clasification-search {
    border: 2px solid white;
    border-radius: 5px;
    margin-left: auto;
    margin-right: auto;

}

.div-image {
    display: grid;
    place-items: center;
}

.image-checkbox1 {
    position: absolute;
    left: 40px;
    top: 25px
}

.image-checkbox2 {
    position: relative;
    left: 30px;
    bottom: 140px
}


#loader {
    border: 25px solid #f3f3f3;
    border-radius: 50%;
    border-top: 25px solid #75ab03;
    width: 150px;
    height: 150px;
    animation: spin 1s linear infinite;
}

.loader-center {
    position: relative;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}


.div-center {
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 400px;
    height: 300px;

}

.button-container {
    display: flex;
    justify-content: center;
    /* Centra los botones horizontalmente */
    gap: 10px;
    /* Espacio entre los botones */
    padding: 10px;
    /* Opcional: añade un poco de espacio alrededor */
}

.button-container button {
    flex: 1;
    max-width: 150px;
}

/* .center {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
} */

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}