*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.botonSumar{
    float: right;
}

.selected {
    background-color: #2577C5  !important;
    color: white !important;
  }

  body {
    background-image: url('fondo.png');
    background-size: cover; /* Asegura que la imagen cubra todo el fondo */
    background-position: center; /* Centra la imagen en el fondo */
    background-attachment: fixed; /* Fija la imagen de fondo para que no se desplace con el contenido */
  }
  
  .tabla-centrada::-webkit-scrollbar {
    height: 12px; /* Aumenta la altura del scroll horizontal */
  }

  .btn-dron{
    background-color: #eae9e9 ;
    border: 2px #977141 !important;
    color: rgba(145, 145, 145, 0.8);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(255, 255, 255, 0.3);
  border-top: 5px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}