@charset "UTF-8";
/* Colores */
/* Verde oscuro */
/* Verde claro */
/* Blanco */
/* Gris oscuro */
/* Gris claro */
/* Tipografías */
/* Espaciados */
/* Colores para seguimiento */
/* Estilos básicos */
body {
  margin: 0;
  padding: 0;
  color: #333;
  font-family: "Nunito-Regular", sans-serif;
}

@font-face {
  font-family: "Nunito-Regular";
  src: url("../fonts/NunitoRegular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Nunito-Bold";
  src: url("../fonts/NunitoBold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  color: #222;
  font-family: "Nunito-Bold", sans-serif;
  margin-bottom: 0.5em;
}

p {
  margin: 0 0 1em;
  line-height: 1.5;
  font-family: "Nunito-Regular", sans-serif;
}

a {
  margin: 0 0 1em;
  line-height: 1.5;
  font-family: "Nunito-Regular", sans-serif;
  color: #81b440 !important;
}
a:hover {
  color: #4CAF50 !important;
}

/* Clases de utilidad */
.text-center {
  text-align: center;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.btn-outline-primary {
  color: #81b440;
  border-color: #81b440;
}
.btn-outline-primary:hover {
  background-color: #81b440;
  color: #fff;
  border-color: #81b440;
}

.nav-link:hover, .nav-link.active {
  color: #fff !important;
  background-color: #81b440 !important;
  border-radius: 5px;
}

.active > .page-link, .page-link.active {
  z-index: 3;
  color: #fff !important;
  background-color: #81b440 !important;
  border-color: #81b440 !important;
}

.form-check-input:checked {
  background-color: #81b440;
  border-color: #81b440;
}

/* Estilos de formularios */
form {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 1rem;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
}

label {
  font-weight: bold;
  margin-bottom: 0.5rem;
  display: block;
}

input, select, textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 1rem;
  font-size: 1rem;
}

button, .btn-primary {
  background-color: #4CAF50;
  border-color: rgb(60.5577689243, 139.4422310757, 63.7450199203);
}
button:hover, .btn-primary:hover {
  background-color: rgb(60.5577689243, 139.4422310757, 63.7450199203);
}

button, .deleteOfficial {
  background-color: #dc3545;
  color: white;
}
button:hover, .deleteOfficial:hover {
  opacity: 0.5;
}

button, .editOfficialBtn {
  background-color: #ffc107;
}
button:hover, .editOfficialBtn:hover {
  opacity: 0.5;
}

button, .deleteDepartment {
  background-color: #dc3545;
  color: white;
}
button:hover, .deleteDepartment:hover {
  opacity: 0.5;
}

button, .editDepartmentBtn {
  background-color: #ffc107;
}
button:hover, .editDepartmentBtn:hover {
  opacity: 0.5;
}

.green-text {
  color: #81b440 !important;
}

label input {
  display: inline-block;
  width: inherit;
  margin-right: 10px;
}

.dashboard {
  padding: 2rem;
}
.dashboard .stats {
  display: flex;
  justify-content: space-around;
  margin-bottom: 3rem;
}
.dashboard .stats .stat-box {
  background-color: #4CAF50;
  color: #fff;
  padding: 1rem;
  border-radius: 5px;
  text-align: center;
}
.dashboard .stats .stat-box h3 {
  margin: 0;
  font-size: 1.5rem;
}

.text-justify {
  text-align: justify;
}

.interactions {
  padding: 2rem;
}
.interactions .interaction-form {
  margin-bottom: 3rem;
}
.interactions table {
  width: 100%;
  border-collapse: collapse;
}
.interactions table th, .interactions table td {
  border: 1px solid #ddd;
  padding: 1rem;
  text-align: left;
}
.interactions table th {
  background-color: #81b440;
  color: #fff;
}
.interactions table tr:nth-child(even) {
  background-color: #f2f2f2;
}

form {
  max-width: none !important;
}

.tab-content {
  border: 1px solid; /* Borde de la caja del contenido */
  background: #f8f9fa; /* Color de fondo igual al de las pestañas */
  padding: 15px; /* Espaciado interno */
  border-top: none; /* Evita doble borde en la parte superior */
  border-left-color: #ddd;
}

.text-especial {
  line-height: 5px;
  margin-bottom: 25px;
}

.alert {
  text-align: justify;
}

.fieldset-followup {
  border: 1px solid #ccc;
  padding: 1rem;
}

.status-open {
  color: orange;
}

.status-closed {
  color: green;
}

.login-page {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80vh;
  max-height: 400px;
  background-color: #FFFFFF;
}
.login-page .login-form {
  width: 100%;
  max-width: 400px;
  padding: 2rem;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header.header {
  background-color: #FFFFFF;
  padding: 1rem 0;
}
header.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header.header .logo {
  display: inline-block;
  margin-right: 2rem;
}
header.header .logo img {
  height: 60px;
}
header.header .logo2 {
  display: inline-block;
  margin-right: 2rem;
}
header.header .logo2 img {
  height: 85px;
}
header.header .header-text {
  display: inline-block;
  float: right;
  flex-direction: column;
  justify-content: center;
}
header.header h1 {
  margin: 0;
  font-size: 1.5rem;
  color: #4CAF50;
}
header.header p {
  margin: 0;
  font-size: 1rem;
  color: #4A4A4A;
}

.users {
  padding: 2rem;
}
.users table {
  width: 100%;
  border-collapse: collapse;
}
.users table th, .users table td {
  border: 1px solid #ddd;
  padding: 1rem;
  text-align: left;
}
.users table th {
  background-color: #4CAF50;
  color: #fff;
}
.users table tr:nth-child(even) {
  background-color: #f9f9f9;
}

/*# sourceMappingURL=main.css.map */
