/* Tipografía oficial */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500&display=swap');

:root {
  --rojo-ahs: #de0700;
  --damasco-ahs: #f4c19f;
  --gris-fondo: #f4f6f8;
  --tipografia: 'Poppins', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--tipografia);
}

body.login-body {
  background-color: var(--damasco-ahs);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.login-container {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  width: 320px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.login-container img.logo {
  max-height: 60px;
  margin-bottom: 1rem;
}

.login-container h2 {
  margin-bottom: 1rem;
  color: var(--rojo-ahs);
}

.login-container label {
  display: block;
  margin-top: 1rem;
  font-weight: 500;
  text-align: left;
}

.login-container input {
  width: 100%;
  padding: 0.5rem;
  margin-top: 0.25rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.login-container button {
  margin-top: 1.5rem;
  width: 100%;
  padding: 0.6rem;
  border: none;
  background: var(--rojo-ahs);
  color: white;
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
}

.login-container button:hover {
  background: #c01800;
}

/* Dashboard/Table */
body.table-body {
  background-color: var(--gris-fondo);
  padding: 2rem;
}

.table-container {
  background: white;
  padding: 2rem;
  max-width: 960px;
  margin: auto;
  border-radius: 8px;
}

.table-container h2 {
  margin-bottom: 1rem;
  color: var(--rojo-ahs);
  text-align: center;
}

.has-error .label {
	color: #a94442;;
}

.hide_column {
	display: none;
}

.ajax-loader {
	position: fixed;
  top: 0;
  left: 0;
  height: 100vh; /* to make it responsive */
  width: 100vw; /* to make it responsive */
  overflow: hidden; /*to remove scrollbars */
  z-index: 99999; /*to make it appear on topmost part of the page */
	display: none; /*to make it visible only on fadeIn() function */
	background-color: rgba(255,255,255,0.7);
}
  
.ajax-loader img {
  position: relative;
  top:30%;
  left:40%;
}

.th-filtro {
  padding-left:1px !important;
  padding-right:1px !important;
  text-align: center;
}

.th-filtro input {
    width:90%;
}

.ui-front {
  z-index: 9999999 !important;
}