body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
}

/* Verde claro */
/* Rojo claro */
/* Amarillo claro */
/* Verde oscuro */
/* Rojo oscuro */
/* Amarillo oscuro */
body {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #334155;
  line-height: 1.5;
}

h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #475569;
  line-height: 1.2;
}

h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #475569;
  line-height: 1.2;
  margin: 0 0 1rem 0;
}

h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #475569;
  line-height: 1.2;
}

h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #475569;
  line-height: 1.2;
}

p {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #334155;
  line-height: 1.5;
  margin-bottom: 0.25rem;
}

.p1 {
  font-family: "Roboto", sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #334155;
  line-height: 1.55;
  margin-bottom: 0.5rem;
}

.p2 {
  font-family: "Roboto", sans-serif;
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #334155;
  line-height: 1.6;
  margin: 0 0 1rem 0;
}

.p3 {
  font-family: "Roboto", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #334155;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

:root {
  --topbar-height: 54px; /* same as layout topbar height */
  --sidebar-width: 240px; /* same as layout sidebar width */
  --content-horizontal-padding: 2.4rem; /* match .content horizontal padding in layout */
  --header-height: 0;
}

.hs-table .hs-table-header {
  position: fixed;
  display: flex;
  gap: 0.8rem;
  background-color: #ffffff !important;
  box-shadow: 0 0.5rem 1.25rem rgba(15, 23, 42, 0.08) !important;
  top: calc(var(--topbar-height) + 1rem);
  left: calc(var(--sidebar-width) + var(--content-horizontal-padding));
  right: var(--content-horizontal-padding);
  z-index: 1150;
  border-radius: 0.8rem;
  border: 1px solid #e2e8f0;
  padding: 0.6rem 10rem;
  box-sizing: border-box;
  overflow: visible;
  max-width: calc(100vw - var(--sidebar-width) - var(--content-horizontal-padding) * 2);
}
.hs-table .hs-table-header .hs-title-row {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 0.6rem;
}
.hs-table .hs-table-header .hs-title-row .title-left {
  display: flex;
}
.hs-table .hs-table-header .hs-title-row .title-left .title-text {
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #475569;
}
.hs-table .hs-table-header .hs-title-row .count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  padding: 0.25rem 0.6rem;
  background: #eef2ff;
  color: #3b82f6;
  border-radius: 999px;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.03);
  margin-left: auto;
}
.hs-table .hs-table-header .hs-filters-actions-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  width: 100%;
}
.hs-table .hs-table-header .hs-filters-actions-row .filter-group {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  flex-grow: 1;
  gap: 1rem;
  align-items: center;
}
.hs-table .hs-table-header .hs-filters-actions-row .filter-group .filter-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.hs-table .hs-table-header .hs-filters-actions-row .filter-group .filter-item .filter-label {
  font-family: "Roboto", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #6b7280;
}
.hs-table .hs-table-header .hs-filters-actions-row .filter-group .filter-item .filter-input {
  width: 100%;
  appearance: none;
  border: 1px solid rgb(226.58, 232.46, 240.3);
  padding: 0.5rem 0.6rem;
  border-radius: 8px;
  color: #1e293b;
  transition: border-color 0.12s ease, box-shadow 0.12s ease;
}
.hs-table .hs-table-header .hs-filters-actions-row .filter-group .filter-item .filter-input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 6px rgba(59, 130, 246, 0.06);
}
.hs-table .hs-table-header .hs-filters-actions-row .filter-group .filter-item .filter-input[type=text] {
  width: 18rem;
}
.hs-table .hs-table-header .hs-filters-actions-row .filter-group .btn {
  font-family: "Roboto", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.hs-table .hs-table-header .hs-filters-actions-row .filter-group .btn.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 1rem;
  border-radius: 0.4rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  background-color: #cbd5e1;
  color: #ffffff;
}
.hs-table .hs-table-header .hs-filters-actions-row .filter-group .btn.btn-primary:hover {
  background-color: rgb(175.8585365854, 191.0780487805, 209.3414634146);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(203, 213, 225, 0.4);
}
.hs-table .hs-table-header .hs-filters-actions-row .filter-group .btn.btn-primary:active {
  transform: translateY(0);
}
.hs-table .hs-table-header .actions-row {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  background: transparent;
  align-items: center;
}
.hs-table .hs-table-header .actions-row .btn {
  font-family: "Roboto", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.hs-table .hs-table-header .actions-row .btn.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 1rem;
  border-radius: 0.4rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  background-color: #3b82f6;
  color: #ffffff;
}
.hs-table .hs-table-header .actions-row .btn.btn-primary:hover {
  background-color: rgb(29.8390243902, 111.4024390244, 244.6609756098);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}
.hs-table .hs-table-header .actions-row .btn.btn-primary:active {
  transform: translateY(0);
}
.hs-table .hs-table-header .actions-row .btn.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 1rem;
  border-radius: 0.4rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  background-color: #cbd5e1;
  color: #ffffff;
}
.hs-table .hs-table-header .actions-row .btn.btn-secondary:hover {
  background-color: rgb(175.8585365854, 191.0780487805, 209.3414634146);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(203, 213, 225, 0.4);
}
.hs-table .hs-table-header .actions-row .btn.btn-secondary:active {
  transform: translateY(0);
}
.hs-table .hs-table-container {
  position: fixed;
  border-radius: 0.7rem;
  overflow-x: auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: #ffffff !important;
  border: 1px solid #e2e8f0;
  box-shadow: 0 0.5rem 1.25rem rgba(15, 23, 42, 0.08) !important;
  padding: 0 0.6rem 0.6rem 0.6rem;
  box-sizing: border-box;
  top: calc(var(--header-height) + var(--topbar-height) + 1.75rem);
  bottom: 1rem;
  left: calc(var(--sidebar-width) + var(--content-horizontal-padding));
  right: var(--content-horizontal-padding);
}
.hs-table .hs-table-container .table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Roboto", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #1e293b;
  table-layout: auto;
  min-width: 0;
}
.hs-table .hs-table-container .table thead tr th {
  position: sticky;
  top: 0;
  z-index: 1140;
  text-align: left;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.9rem 0.85rem;
  border-bottom: 1px solid #e2e8f0;
  color: #1e293b;
  white-space: nowrap;
  background: #f8fafc;
}
.hs-table .hs-table-container .table tbody tr {
  transition: background 0.12s ease;
}
.hs-table .hs-table-container .table tbody tr:hover {
  background: rgba(59, 130, 246, 0.03);
}
.hs-table .hs-table-container .table tbody tr td {
  padding: 0.65rem 0.85rem;
  border-bottom: 1px solid #e2e8f0;
  vertical-align: middle;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.hs-table .hs-table-container .table tbody tr.empty td.empty {
  text-align: center;
  padding: 2rem;
  color: #6b7280;
  white-space: normal;
}

.hs-form {
  width: 90%;
  max-width: 40rem;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 0.8rem;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hs-form:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.hs-form .hs-form-header {
  background-color: #ffffff;
  border-top-left-radius: 0.8rem;
  border-top-right-radius: 0.8rem;
  border-bottom: 0.1rem solid #e9ecef;
  padding: 0.1rem 0;
  letter-spacing: 0.1rem;
  text-align: center;
  position: relative;
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.hs-form .hs-form-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.25rem;
  background: linear-gradient(90deg, #4e54c8, #8f94fb);
  border-top-left-radius: 0.8rem;
  border-top-right-radius: 0.8rem;
}
.hs-form .body {
  display: grid;
  gap: 1rem;
  background: #ffffff;
  padding: 1.5rem 2rem;
}
.hs-form .body .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.hs-form .body .form-group label {
  font-family: "Roboto", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #374151;
  padding-left: 0.65rem;
}
.hs-form .body .form-group .form-value {
  padding: 0.5rem 0.65rem;
  border: 0.09rem solid #ced4da;
  border-radius: 0.5rem;
  font-family: "Roboto", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #1f2937;
}
.hs-form .body .form-group .tag-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.25rem;
}
.hs-form .body .form-group .tag-container .tag {
  display: inline-flex;
  align-items: center;
  background-color: #f9fafb;
  color: #64748b;
  padding: 0.3rem 0.75rem;
  font-family: "Roboto", sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border-radius: 9999px;
  border: 1px solid #cbd5e1;
  transition: background-color 0.2s ease;
}
.hs-form .body .form-group .tag-container .tag:hover {
  background-color: #cbd5e1;
}
.hs-form .body .form-group input,
.hs-form .body .form-group select,
.hs-form .body .form-group span {
  padding: 0.65rem;
  border: 0.09rem solid #ced4da;
  border-radius: 0.5rem;
  font-family: "Roboto", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #1f2937;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.hs-form .body .form-group input::placeholder,
.hs-form .body .form-group select::placeholder,
.hs-form .body .form-group span::placeholder {
  color: #adb5bd;
}
.hs-form .body .form-group input:focus,
.hs-form .body .form-group select:focus,
.hs-form .body .form-group span:focus {
  border-color: #4e54c8;
  box-shadow: 0 0 0 3px rgba(78, 84, 200, 0.2);
  outline: none;
}
.hs-form .body .form-group textarea {
  resize: vertical;
  font-family: "Roboto", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #1f2937;
  min-height: 80px;
}
.hs-form .body .form-row {
  display: flex;
  gap: 1rem;
  width: 100%;
}
.hs-form .body .form-row .form-group {
  flex: 1;
}
.hs-form .body .form-row.w-custom .col-10 {
  flex: 0 0 calc(10% - 0.9rem);
}
.hs-form .body .form-row.w-custom .col-20 {
  flex: 0 0 calc(20% - 0.8rem);
}
.hs-form .body .form-row.w-custom .col-30 {
  flex: 0 0 calc(30% - 0.7rem);
}
.hs-form .body .form-row.w-custom .col-40 {
  flex: 0 0 calc(40% - 0.6rem);
}
.hs-form .body .form-row.w-custom .col-50 {
  flex: 0 0 calc(50% - 0.5rem);
}
.hs-form .body .form-row.w-custom .col-60 {
  flex: 0 0 calc(60% - 0.4rem);
}
.hs-form .body .form-row.w-custom .col-70 {
  flex: 0 0 calc(70% - 0.3rem);
}
.hs-form .body .form-row.w-custom .col-80 {
  flex: 0 0 calc(80% - 0.2rem);
}
.hs-form .body .form-row.w-custom .col-90 {
  flex: 0 0 calc(90% - 0.1rem);
}
.hs-form .body .separator {
  height: 0.05rem;
  background-color: #e2e8f0;
  margin: 1.2rem 0;
}
.hs-form .alert-container {
  display: none;
  width: auto;
  position: fixed;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
}
.hs-form .alert-container .alert {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 0 1rem 0.8rem;
  border-radius: 8px;
  margin: 0.5rem 0;
  font-family: "Roboto", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #374151;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(-10px);
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  transform: translateY(1.2rem);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.hs-form .alert-container .alert .alert-icon {
  font-size: 1.5rem;
}
.hs-form .alert-container .alert.alert-success {
  background-color: #d1f7d6;
  color: #256029;
  border: 1px solid #a4e5aa;
}
.hs-form .alert-container .alert.alert-success .alert-message {
  vertical-align: middle;
}
.hs-form .alert-container .alert.alert-error {
  background-color: #fde4e4;
  color: #a61d1d;
  border: 1px solid #f5b3b3;
}
.hs-form .alert-container .alert.alert-error .alert-message {
  vertical-align: middle;
}
.hs-form .alert-container .alert.alert-warning {
  background-color: #fff3cd;
  color: #856404;
  border: 1px solid #ffeeba;
}
.hs-form .alert-container .alert.alert-warning .alert-message {
  vertical-align: middle;
}
.hs-form .alert-container .alert {
  /* Mostrar alerta */
}
.hs-form .alert-container .alert.alert-show {
  opacity: 1;
  transform: translateY(0);
}
.hs-form .footer-actions {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  padding: 15px;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}
.hs-form .footer-actions .btn {
  font-family: "Roboto", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.hs-form .footer-actions .btn.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  background-color: #3b82f6;
  color: #ffffff;
}
.hs-form .footer-actions .btn.btn-primary:hover {
  background-color: rgb(29.8390243902, 111.4024390244, 244.6609756098);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}
.hs-form .footer-actions .btn.btn-primary:active {
  transform: translateY(0);
}
.hs-form .footer-actions .btn.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  background-color: #cbd5e1;
  color: #ffffff;
}
.hs-form .footer-actions .btn.btn-secondary:hover {
  background-color: rgb(175.8585365854, 191.0780487805, 209.3414634146);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(203, 213, 225, 0.4);
}
.hs-form .footer-actions .btn.btn-secondary:active {
  transform: translateY(0);
}
.hs-form .footer-actions .btn.btn-danger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  background-color: #ef4444;
  color: #ffffff;
}
.hs-form .footer-actions .btn.btn-danger:hover {
  background-color: rgb(236.5802955665, 39.7197044335, 39.7197044335);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(239, 68, 68, 0.4);
}
.hs-form .footer-actions .btn.btn-danger:active {
  transform: translateY(0);
}

.tab-panel-card {
  max-width: 50rem;
  background: #ffffff;
  border-radius: 0.8rem;
  border: 0.1rem solid #e2e8f0;
  overflow: hidden;
  box-shadow: 0 0.5rem 1.1rem rgba(15, 23, 42, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.tab-panel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 1rem 2.2rem rgba(15, 23, 42, 0.12);
}
.tab-panel-card .tabs-container {
  display: flex;
  border-bottom: 0.1rem solid #e2e8f0;
  background: #f8fafc;
}
.tab-panel-card .tabs-container .tab {
  flex: 1;
  padding: 0.8rem 1.3rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #64748b;
  transition: all 0.2s ease;
  border-bottom: 0.2rem solid transparent;
}
.tab-panel-card .tabs-container .tab:hover {
  background: rgba(241, 245, 249, 0.05);
  color: #334155;
}
.tab-panel-card .tabs-container .tab.active {
  color: #334155;
  border-bottom-color: #e2e8f0;
}
@media (max-width: 992px) {
  .tab-panel-card .tabs-container {
    padding: 0.6rem 0.8rem;
    font-size: 0.9rem;
  }
}
.tab-panel-card .tab-content {
  display: none;
  padding: 1rem;
  animation: fadeIn 0.2s ease;
}
.tab-panel-card .tab-content.active {
  display: block;
}
@media (max-width: 992px) {
  .tab-panel-card .tab-content {
    padding: 0.5rem;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}/*# sourceMappingURL=global.css.map */