body {
  height: 100vh;
  background: linear-gradient(rgb(0 0 0 / 34%), rgb(0 0 0 / 0%)), url('../../imagenes/fondo_login.jpg');

  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ui-jqgrid {
  font-size: 13px;
  overflow: hidden;
}
.ui-jqgrid .ui-jqgrid-bdiv {
  position: relative;
  overflow: auto;
}
.ui-jqgrid .ui-jqgrid-hdiv {
  position: relative;
  overflow: hidden;
}
.ui-jqgrid .ui-jqgrid-pager {
  position: relative;
  overflow: hidden;
}

.btn-verde {
  display: block;
  padding: 3px 0;
  position: relative;
  text-align: center;
  text-decoration: none;
  z-index: 10;
  background-color: #5fe200;
  color: #000000;
  padding: 5px 10px;
  cursor: pointer;
  transition: background-color 0.5s ease;
}

.btn-verde:hover {
  background-color: white;
  color: #000000; 
}

.__greenbtn {
  background-color: #5fe200 !important;
  color: rgba(255, 255, 255, 0.8);
  display: block;
  padding: 3px 0;
  position: relative;
  text-align: center;
  text-decoration: none;
  z-index: 10;
  border-radius: 20px;
}

.__greenbtn:hover {
  background-color: #ffff !important;
  color: #fff;
}

.__whitebtn {
  background-color: #ffffff !important;
  color: #5fe200;
  display: block;
  padding: 3px 0;
  position: relative;
  text-align: center;
  text-decoration: none;
  z-index: 10;
  border-radius: 20px;
}

.__whitebtn:hover {
  background-color: #5fe200 !important;
  color: #5fe200;
}

.btn[disabled] {
  background-color: #ccc;
  color: #666;
  cursor: not-allowed;
}

.error-message {
  display: none;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #f44336;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
}

.close-btn {
  cursor: pointer;
  float: right;
  font-size: 20px;
  font-weight: bold;
}
