:root {
    --bg-sidebar: #96A5B4;
    --bg-gris: #DCE1E6;
    --azul-color-admin: #348fe2;
   
}

html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

html, body, #app {
    height: 100% !important;
    margin: 0;
    padding: 0;
    overflow: hidden; /* Prohibido el scroll en la raíz de la app */
}


/*Forzamos al contenedor principal a ocupar solo su espacio */
.app-header-fixed .app-content {
    margin-top: 60px !important; /* Altura exacta del Header */
    margin-left: 200px !important; /* Ancho exacto del Sidebar */
    padding: 0 !important;
    height: calc(100vh - 60px) !important;
    overflow: hidden;
    position: relative;
    background: var(--bg-gris); 
}

ul {
    list-style: none;
}

/*DataTables*/
.panel-inverse {
    width: 80vw;
    margin-top: 40px;
    margin-left: 50px;
}

.table-inputs:disabled {
    background-color: transparent;
    border: 0;
}

.btn.editar-fila {
    background-color: var(--azul-color-admin);
    color: white;
    border: 0;
}
