/*!*******************************************************************************************************************************************************************************************!*\
  !*** css ../node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!../node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!../manager/static/manager/sass/main.sass ***!
  \*******************************************************************************************************************************************************************************************/
@charset "UTF-8";
/* ===== COLORES GLOBALES ===== */
/* ===== BREAKPOINTS GLOBALES ===== */
/* ===== MIXINS GLOBALES ===== */
/* ===== VARIABLES DE DISEÑO GLOBALES ===== */
/* ===== Z-INDEX SCALE ===== */
/* ===== SPACING SCALE ===== */
/* ===== FONT SIZES ===== */
/* ===== FUNCIONES DE COLOR COMPATIBLES ===== */
/* ===== MIXINS DE UTILIDAD ===== */
/* ===== ANIMACIONES GLOBALES ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
/* ===== UTILIDADES DE ACCESIBILIDAD ===== */
/* ===== UTILIDADES DE PRINT ===== */
.search-container {
  justify-content: flex-end;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  margin-right: 20px;
  position: relative;
}
@media (max-width: 575px) {
  .search-container {
    justify-content: center;
    margin-right: 0;
    width: 100%;
    padding: 0 15px;
  }
}
.search-container .search-input {
  width: min(280px, 100%);
  height: 44px;
  padding: 12px 45px 12px 15px;
  border-radius: 50px;
  border: 1px solid #e0e0e0;
  outline: none;
  font-size: clamp(14px, 3vw, 16px);
  transition: all 0.2s ease;
  background-color: #fff;
}
.search-container .search-input:focus {
  border-color: #00a651;
  box-shadow: 0 0 0 2px rgba(0, 166, 81, 0.2);
}
.search-container .search-input::placeholder {
  color: #666;
  font-size: clamp(12px, 2.5vw, 14px);
}
@media (max-width: 575px) {
  .search-container .search-input {
    width: 100%;
    font-size: 16px;
  }
}
.search-container .search-btn {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  padding: 8px;
  border: none;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  .search-container .search-btn:hover {
    background-color: rgba(0, 166, 81, 0.1);
    color: #00a651;
  }
}
.search-container .search-btn i {
  font-size: 16px;
  color: #666;
}
@media (max-width: 575px) {
  .search-container .search-btn i {
    font-size: 18px;
  }
}

.clients-table, .products-table, .data-table {
  width: 100%;
  max-width: 90%;
  margin: auto;
  border-collapse: collapse;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.clients-table th, .clients-table td, .products-table th, .products-table td, .data-table th, .data-table td {
  padding: 12px 15px;
  text-align: center;
  border-bottom: 1px solid #f0f0f0;
  font-size: clamp(12px, 2.5vw, 14px);
  min-height: 44px;
  vertical-align: middle;
}
.clients-table th, .products-table th, .data-table th {
  font-weight: 600;
  color: #333;
  position: sticky;
  top: 0;
  z-index: 10;
}
.clients-table .view-btn, .products-table .view-btn, .data-table .view-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  color: #1E88E5;
  padding: 8px;
  border-radius: 4px;
  transition: all 0.2s ease;
  min-width: 32px;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media (hover: hover) and (pointer: fine) {
  .clients-table .view-btn:hover, .products-table .view-btn:hover, .data-table .view-btn:hover {
    background-color: rgba(30, 136, 229, 0.1);
    transform: scale(1.1);
  }
}
.clients-table .delete-btn, .products-table .delete-btn, .data-table .delete-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  color: #E53935;
  padding: 8px;
  border-radius: 4px;
  transition: all 0.2s ease;
  min-width: 32px;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media (hover: hover) and (pointer: fine) {
  .clients-table .delete-btn:hover, .products-table .delete-btn:hover, .data-table .delete-btn:hover {
    background-color: rgba(229, 57, 53, 0.1);
    transform: scale(1.1);
  }
}
@media (max-width: 1023px) {
  .clients-table, .products-table, .data-table {
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    margin: 0;
    box-shadow: none;
  }
  .clients-table thead, .products-table thead, .data-table thead {
    display: none;
  }
  .clients-table tbody tr, .products-table tbody tr, .data-table tbody tr {
    display: block;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    border: none;
    padding: 15px;
    position: relative;
  }
}
@media (max-width: 1023px) and (min-width: 576px) and (max-width: 767px) {
  .clients-table tbody tr, .products-table tbody tr, .data-table tbody tr {
    margin-bottom: 18px;
    padding: 18px;
  }
}
@media (max-width: 1023px) and (max-width: 575px) {
  .clients-table tbody tr, .products-table tbody tr, .data-table tbody tr {
    margin-bottom: 12px;
    padding: 12px;
  }
}
@media (max-width: 1023px) {
  .clients-table td, .products-table td, .data-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    text-align: left;
    border-bottom: 1px solid #eee;
    position: relative;
    min-height: 44px;
  }
}
@media (max-width: 1023px) and (min-width: 576px) and (max-width: 767px) {
  .clients-table td, .products-table td, .data-table td {
    padding: 14px 0;
    font-size: 14px;
  }
}
@media (max-width: 1023px) and (max-width: 575px) {
  .clients-table td, .products-table td, .data-table td {
    font-size: 12px;
  }
}
@media (max-width: 1023px) {
  .clients-table td:before, .products-table td:before, .data-table td:before {
    content: attr(data-label);
    font-weight: bold;
    color: #666;
    flex: 1;
    text-align: left;
    margin-right: 15px;
    font-size: clamp(11px, 2.5vw, 13px);
  }
  .clients-table td:after, .products-table td:after, .data-table td:after {
    content: "";
    flex: 1;
  }
  .clients-table td > *, .products-table td > *, .data-table td > * {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    text-align: right;
  }
  .clients-table td:last-child, .products-table td:last-child, .data-table td:last-child {
    border-bottom: none;
  }
  .clients-table td[data-label=Acciones], .products-table td[data-label=Acciones], .data-table td[data-label=Acciones] {
    justify-content: center;
  }
  .clients-table td[data-label=Acciones]:before, .products-table td[data-label=Acciones]:before, .data-table td[data-label=Acciones]:before {
    display: none;
  }
  .clients-table td[data-label=Acciones] > *, .products-table td[data-label=Acciones] > *, .data-table td[data-label=Acciones] > * {
    justify-content: center;
    flex: none;
  }
  .clients-table td[data-label=Acciones] .view-btn, .clients-table td[data-label=Acciones] .delete-btn, .products-table td[data-label=Acciones] .view-btn, .products-table td[data-label=Acciones] .delete-btn, .data-table td[data-label=Acciones] .view-btn, .data-table td[data-label=Acciones] .delete-btn {
    font-size: 18px;
    min-width: 44px;
    min-height: 44px;
  }
}
@media (max-width: 1023px) and (min-width: 576px) and (max-width: 767px) {
  .clients-table td[data-label=Acciones] .view-btn, .clients-table td[data-label=Acciones] .delete-btn, .products-table td[data-label=Acciones] .view-btn, .products-table td[data-label=Acciones] .delete-btn, .data-table td[data-label=Acciones] .view-btn, .data-table td[data-label=Acciones] .delete-btn {
    font-size: 20px;
    min-width: 48px;
    min-height: 48px;
  }
}

.table-container, .table-responsive-container {
  width: 100%;
  overflow: visible;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1023px) {
  .table-container, .table-responsive-container {
    margin-bottom: 15px;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
  }
}
@media (max-width: 1023px) and (min-width: 576px) and (max-width: 767px) {
  .table-container, .table-responsive-container {
    margin-bottom: 18px;
  }
}
@media (max-width: 1023px) and (max-width: 575px) {
  .table-container, .table-responsive-container {
    margin-bottom: 10px;
  }
}

.mobile-card {
  display: none;
}
@media (max-width: 1023px) {
  .mobile-card {
    display: block;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 15px;
    margin-bottom: 15px;
  }
}
@media (max-width: 1023px) and (min-width: 576px) and (max-width: 767px) {
  .mobile-card {
    padding: 18px;
    margin-bottom: 18px;
  }
}
@media (max-width: 1023px) and (max-width: 575px) {
  .mobile-card {
    padding: 12;
  }
}

.binstatus-container {
  padding: 16px 20px;
}
@media (max-width: 575px) {
  .binstatus-container {
    padding: 12px 15px;
  }
}
.binstatus-container h5 {
  margin-bottom: 16px;
  font-weight: 500;
  font-size: clamp(14px, 3vw, 16px);
}
.binstatus-container .align-items-center {
  position: relative;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.binstatus-container .align-items-center input[type=checkbox] {
  position: absolute;
  opacity: 0;
  z-index: 2;
  width: 24px;
  height: 24px;
  margin: 0;
  cursor: pointer;
}
.binstatus-container .align-items-center input[type=checkbox]:focus + .checkbox-visual {
  outline: 2px solid #4d90fe;
  outline-offset: 2px;
}
.binstatus-container .align-items-center .checkbox-visual {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  position: relative;
  flex-shrink: 0;
  background-color: rgb(234, 234, 234);
  border: 2px solid rgb(234, 234, 234);
  transition: all 0.2s ease;
}
.binstatus-container .align-items-center .checkbox-visual::after {
  content: "-";
  color: rgb(108, 115, 133);
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
}
.binstatus-container .align-items-center input[type=checkbox]:checked + .checkbox-visual {
  background-color: rgb(76, 175, 80);
  border-color: rgb(76, 175, 80);
}
.binstatus-container .align-items-center input[type=checkbox]:checked + .checkbox-visual::after {
  content: "✓";
  color: white;
}
.binstatus-container .align-items-center label {
  margin: 0 0 0 5px;
  font-size: clamp(12px, 2.5vw, 14px);
  color: rgba(0, 0, 0, 0.8);
  cursor: pointer;
  line-height: 1.3;
  flex: 1;
}
@media (hover: hover) and (pointer: fine) {
  .binstatus-container .align-items-center label:hover {
    color: rgb(0, 0, 0);
  }
}

.add-button {
  position: fixed;
  right: 40px;
  bottom: 40px;
  width: 80px;
  height: 80px;
  background-color: #34A853;
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  z-index: 100;
  font-size: xxx-large;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (hover: hover) and (pointer: fine) {
  .add-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  }
}
@media (max-width: 575px) {
  .add-button {
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    font-size: xx-large;
  }
}
.add-button:focus-visible {
  outline: 3px solid rgba(57, 181, 74, 0.5);
  outline-offset: 3px;
}

.back-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 56px;
  border: 3px solid #2D6936;
  border-radius: 50px;
  background-color: transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 80px;
}
@media (max-width: 575px) {
  .back-button {
    width: 60px;
    height: 44px;
    min-width: 60px;
  }
}
.back-button i {
  font-size: 28px;
  color: #1F3D2A;
  transition: color 0.2s ease;
}
@media (max-width: 575px) {
  .back-button i {
    font-size: 20px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .back-button:hover {
    background-color: #2D6936;
    transform: translateY(-1px);
  }
  .back-button:hover i {
    color: white;
  }
}
.back-button:focus-visible {
  outline: 2px solid #2D6936;
  outline-offset: 2px;
}

.formato-contenedor {
  margin-bottom: 1rem;
}
.formato-contenedor label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: rgb(33, 37, 41);
  font-size: clamp(12px, 2.5vw, 14px);
}

.formato-select {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: clamp(14px, 2.5vw, 16px);
  line-height: 1.5;
  color: rgb(33, 37, 41);
  background-color: rgb(255, 255, 255);
  background-clip: padding-box;
  border: 1px solid rgb(206, 212, 218);
  border-radius: 4px;
  transition: all 0.15s ease-in-out;
  min-height: 44px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 24 24%27 fill=%27none%27 stroke=%27%2328a745%27 stroke-width=%272%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27%3E%3Cpolyline points=%276 9 12 15 18 9%27%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  padding-right: 2.5rem;
}
.formato-select::-ms-expand {
  display: none;
}
.formato-select:focus {
  border-color: rgb(40, 167, 69) !important;
  outline: 0 !important;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25) !important;
}
@media (hover: hover) and (pointer: fine) {
  .formato-select:hover:not(.formato-readonly):not(.formato-disabled) {
    border-color: rgb(40, 167, 69) !important;
    cursor: pointer;
  }
}
.formato-select.formato-readonly {
  background-color: #e9ecef;
  opacity: 1;
  cursor: default;
}
.formato-select.formato-readonly:hover, .formato-select.formato-readonly:focus {
  border-color: rgb(206, 212, 218);
  box-shadow: none;
}
.formato-select.formato-disabled {
  background-color: #e9ecef;
  cursor: not-allowed;
  pointer-events: none;
}
.formato-select.formato-disabled:hover, .formato-select.formato-disabled:focus {
  border-color: rgb(206, 212, 218);
  box-shadow: none;
}
.formato-select option {
  color: rgb(33, 37, 41);
  background-color: rgb(255, 255, 255);
  padding: 8px;
  font-size: inherit;
}
.formato-select option:checked, .formato-select option:selected {
  background-color: rgba(40, 167, 69, 0.2) !important;
  font-weight: 500 !important;
  color: rgb(33, 37, 41) !important;
}
.formato-select option:hover {
  background-color: rgba(40, 167, 69, 0.1) !important;
}
@media (max-width: 575px) {
  .formato-select {
    font-size: 16px;
  }
}

.global-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.global-loader.show {
  display: flex;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top-color: #34A853;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@media (max-width: 575px) {
  .loader-spinner {
    width: 40px;
    height: 40px;
    border-width: 3px;
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.blur-effect {
  filter: blur(5px);
  pointer-events: none;
  transition: filter 0.3s ease;
}

/* ===== NAVEGACIÓN MÓVIL VERTICAL POR RENGLONES ===== */
.top-nav {
  background-color: rgb(23, 165, 77);
  min-height: 60px;
  display: flex;
  align-items: center;
  color: rgb(255, 255, 255) !important;
  position: relative;
  z-index: 1030;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
@media (min-width: 1024px) {
  .top-nav {
    padding: 0 24px;
    justify-content: space-between;
    flex-direction: row;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .top-nav {
    padding: 0 16px;
    justify-content: space-between;
    min-height: auto;
    flex-direction: row;
  }
}
@media (max-width: 1023px) {
  .top-nav {
    padding: 0;
    min-height: auto;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    width: 100%;
  }
}

.nav-container {
  width: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
}
@media (max-width: 1023px) {
  .nav-container {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
  }
}

.nav-logo {
  flex-shrink: 0;
}
@media (max-width: 1023px) {
  .nav-logo {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    order: 1;
  }
}
.nav-logo .nav-logo-img {
  transition: all 0.2s ease;
}
@media (min-width: 1024px) {
  .nav-logo .nav-logo-img {
    width: 59px;
    height: 59px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .nav-logo .nav-logo-img {
    width: 50px;
    height: 50px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .nav-logo .nav-logo-img {
    width: 45px;
    height: 45px;
  }
}
@media (max-width: 575px) {
  .nav-logo .nav-logo-img {
    width: 40px;
    height: 40px;
  }
}

.nav-left, .nav-right {
  display: flex;
  align-items: center;
}
@media (min-width: 1024px) {
  .nav-left, .nav-right {
    gap: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .nav-left, .nav-right {
    gap: 15px;
  }
}
@media (max-width: 1023px) {
  .nav-left, .nav-right {
    width: 100%;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }
}

@media (max-width: 1023px) {
  .nav-left {
    order: 2;
  }
}

@media (max-width: 1023px) {
  .nav-right {
    order: 3;
  }
}

.custom-account-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-weight: bold;
  white-space: nowrap;
  text-decoration: none;
  color: white;
  background-color: transparent;
  border: none;
  transition: all 0.3s ease-in-out;
  height: auto;
  gap: 6px;
}
@media (min-width: 1024px) {
  .custom-account-link {
    padding: 8px 16px;
    font-size: 16px;
    margin-left: 8px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .custom-account-link {
    padding: 7px 14px;
    font-size: 15px;
    margin-left: 6px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .custom-account-link {
    padding: 6px 12px;
    font-size: 14px;
    margin-left: 6px;
  }
}
@media (max-width: 1023px) {
  .custom-account-link {
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    margin: 0;
    justify-content: flex-start;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    gap: 12px;
  }
}
@media (max-width: 1023px) and (min-width: 576px) and (max-width: 767px) {
  .custom-account-link {
    padding: 18px 24px;
    font-size: 17px;
    gap: 14px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .custom-account-link:hover, .custom-account-link:focus {
    background-color: white;
    color: rgb(23, 165, 77);
    text-decoration: none;
  }
}

@media (max-width: 1023px) {
  .nav-dropdown {
    width: 100%;
    margin: 0;
  }
}

.dropdown {
  position: relative;
}
@media (max-width: 1023px) {
  .dropdown {
    width: 100%;
    margin: 0;
  }
}
.dropdown .btn-secondary {
  background-color: rgb(23, 165, 77) !important;
  color: rgb(255, 255, 255) !important;
  border: none !important;
  border-radius: 0 !important;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 1024px) {
  .dropdown .btn-secondary {
    padding: 10px 20px;
    font-size: 16px;
    min-width: 140px;
    border-radius: 8px !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .dropdown .btn-secondary {
    padding: 9px 16px;
    font-size: 15px;
    min-width: 120px;
    border-radius: 7px !important;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .dropdown .btn-secondary {
    padding: 8px 14px;
    font-size: 14px;
    min-width: 110px;
    border-radius: 6px !important;
  }
}
@media (max-width: 1023px) {
  .dropdown .btn-secondary {
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    min-width: unset;
    justify-content: space-between;
  }
}
@media (max-width: 1023px) and (min-width: 576px) and (max-width: 767px) {
  .dropdown .btn-secondary {
    padding: 18px 24px;
    font-size: 17px;
  }
}
@media (max-width: 1023px) {
  .dropdown .btn-secondary::after {
    content: "➥" !important;
    font-size: 16px;
    margin-left: auto;
    border: none !important;
    background: none !important;
    transform: none !important;
    vertical-align: baseline !important;
  }
}
@media (max-width: 1023px) and (min-width: 576px) and (max-width: 767px) {
  .dropdown .btn-secondary::after {
    font-size: 18px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .dropdown .btn-secondary:hover, .dropdown .btn-secondary:focus, .dropdown .btn-secondary:active {
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: rgb(255, 255, 255) !important;
  }
}
@media (hover: hover) and (pointer: fine) and (min-width: 1024px) {
  .dropdown .btn-secondary:hover, .dropdown .btn-secondary:focus, .dropdown .btn-secondary:active {
    background-color: rgb(255, 255, 255) !important;
    color: rgb(23, 165, 77) !important;
    border-color: rgb(23, 165, 77) !important;
  }
}

.selected {
  background-color: rgb(255, 255, 255) !important;
  color: rgb(23, 165, 77) !important;
  font-weight: bold !important;
}
@media (max-width: 1023px) {
  .selected {
    width: 100%;
    text-align: inherit;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .selected {
    width: 100%;
    text-align: inherit;
  }
}

.dropdown-menu {
  border-radius: 0 !important;
  border: none;
  box-shadow: none;
  margin: 0;
  padding: 0;
  background-color: rgba(255, 255, 255, 0.95);
}
@media (min-width: 1024px) {
  .dropdown-menu {
    border-radius: 8px !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    margin-top: 4px;
    padding: 6px 0;
    min-width: 200px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .dropdown-menu {
    border-radius: 7px !important;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.12);
    min-width: 180px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .dropdown-menu {
    border-radius: 6px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 170px;
  }
}
@media (max-width: 1023px) {
  .dropdown-menu {
    position: static !important;
    transform: none !important;
    width: 100%;
    min-width: unset;
    max-width: unset;
  }
}
.dropdown-menu .dropdown-item {
  border-radius: 0;
  margin: 0;
  transition: all 0.2s ease-in-out;
  color: #333 !important;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 1024px) {
  .dropdown-menu .dropdown-item {
    padding: 12px 16px;
    font-size: 15px;
    border-radius: 6px;
    margin: 0 6px 1px 6px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .dropdown-menu .dropdown-item {
    padding: 11px 14px;
    font-size: 14px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .dropdown-menu .dropdown-item {
    padding: 10px 12px;
    font-size: 13px;
  }
}
@media (max-width: 1023px) {
  .dropdown-menu .dropdown-item {
    padding: 12px 20px 12px 40px;
    font-size: 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
}
@media (max-width: 1023px) and (min-width: 576px) and (max-width: 767px) {
  .dropdown-menu .dropdown-item {
    padding: 14px 24px 14px 48px;
    font-size: 15px;
  }
}
@media (max-width: 1023px) {
  .dropdown-menu .dropdown-item::after {
    display: none !important;
  }
}
@media (hover: hover) and (pointer: fine) {
  .dropdown-menu .dropdown-item:hover, .dropdown-menu .dropdown-item:focus {
    background-color: rgba(23, 165, 77, 0.1) !important;
    color: rgb(23, 165, 77) !important;
  }
}
@media (hover: hover) and (pointer: fine) and (min-width: 1024px) {
  .dropdown-menu .dropdown-item:hover, .dropdown-menu .dropdown-item:focus {
    background-color: rgb(23, 165, 77) !important;
    color: rgb(255, 255, 255) !important;
  }
}

@media (max-width: 1023px) {
  .user-dropdown {
    width: 100%;
    order: 3;
  }
}

.user-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  border: none;
  background: none;
  text-decoration: none;
  padding: 8px;
  border-radius: 8px;
  transition: background-color 0.2s ease;
  justify-content: space-between;
}
@media (min-width: 1024px) {
  .user-dropdown-btn .user-name {
    font-size: 16px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .user-dropdown-btn {
    padding: 7px;
    gap: 7px;
  }
  .user-dropdown-btn .user-name {
    font-size: 15px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .user-dropdown-btn {
    padding: 6px;
    gap: 6px;
  }
  .user-dropdown-btn .user-name {
    font-size: 14px;
  }
}
@media (max-width: 1023px) {
  .user-dropdown-btn {
    width: 100%;
    padding: 16px 20px;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    justify-content: space-between;
  }
}
@media (max-width: 1023px) and (min-width: 576px) and (max-width: 767px) {
  .user-dropdown-btn {
    padding: 18px 24px;
    gap: 14px;
  }
}
@media (max-width: 1023px) {
  .user-dropdown-btn .user-name {
    font-size: 16px;
    max-width: none;
    overflow: visible;
    text-overflow: unset;
  }
}
@media (max-width: 1023px) and (min-width: 576px) and (max-width: 767px) {
  .user-dropdown-btn .user-name {
    font-size: 17px;
  }
}
@media (max-width: 1023px) {
  .user-dropdown-btn::after {
    content: "➥" !important;
    font-size: 16px;
    margin-left: auto;
    border: none !important;
    background: none !important;
    transform: none !important;
    vertical-align: baseline !important;
  }
}
@media (max-width: 1023px) and (min-width: 576px) and (max-width: 767px) {
  .user-dropdown-btn::after {
    font-size: 18px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .user-dropdown-btn:hover, .user-dropdown-btn:focus {
    background-color: rgba(255, 255, 255, 0.1);
    color: white !important;
    text-decoration: none;
  }
}

@media (max-width: 1023px) {
  .user-dropdown .dropdown-menu {
    background-color: rgba(255, 255, 255, 0.95);
  }
}
@media (max-width: 1023px) {
  .user-dropdown .dropdown-menu .dropdown-header {
    padding: 12px 20px 8px 40px;
    font-size: 14px;
    color: #666;
  }
}
@media (max-width: 1023px) and (min-width: 576px) and (max-width: 767px) {
  .user-dropdown .dropdown-menu .dropdown-header {
    padding: 14px 24px 10px 48px;
    font-size: 15px;
  }
}
@media (max-width: 1023px) {
  .user-dropdown .dropdown-menu .dropdown-divider {
    margin: 0;
    border-color: rgba(0, 0, 0, 0.1);
  }
}
@media (max-width: 1023px) {
  .user-dropdown .dropdown-menu .dropdown-item {
    padding: 12px 20px 12px 40px;
  }
}
@media (max-width: 1023px) and (min-width: 576px) and (max-width: 767px) {
  .user-dropdown .dropdown-menu .dropdown-item {
    padding: 14px 24px 14px 48px;
  }
}
@media (max-width: 1023px) {
  .user-dropdown .dropdown-menu .dropdown-item::after {
    display: none !important;
  }
  .user-dropdown .dropdown-menu .dropdown-item.text-danger {
    color: #dc3545 !important;
  }
}

.nav-user-status {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 1023px) {
  .nav-user-status {
    width: 100%;
    justify-content: center;
    padding: 16px 20px;
    gap: 12px;
  }
}
@media (max-width: 1023px) and (min-width: 576px) and (max-width: 767px) {
  .nav-user-status {
    padding: 18px 24px;
    gap: 14px;
  }
}

.nav-status-text {
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
}
@media (min-width: 1024px) {
  .nav-status-text {
    font-size: 16px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .nav-status-text {
    font-size: 15px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .nav-status-text {
    font-size: 14px;
  }
}
@media (max-width: 1023px) {
  .nav-status-text {
    font-size: 16px;
  }
}
@media (max-width: 1023px) and (min-width: 576px) and (max-width: 767px) {
  .nav-status-text {
    font-size: 17px;
  }
}

.nav-icon-muted {
  color: rgba(255, 255, 255, 0.5);
}

.nav-loading-text {
  color: white;
  font-style: italic;
}
@media (min-width: 1024px) {
  .nav-loading-text {
    margin-left: 16px;
    font-size: 16px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .nav-loading-text {
    margin-left: 14px;
    font-size: 15px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .nav-loading-text {
    margin-left: 12px;
    font-size: 14px;
  }
}
@media (max-width: 1023px) {
  .nav-loading-text {
    width: 100%;
    text-align: center;
    padding: 16px 20px;
    margin: 0;
    font-size: 16px;
  }
}
@media (max-width: 1023px) and (min-width: 576px) and (max-width: 767px) {
  .nav-loading-text {
    padding: 18px 24px;
    font-size: 17px;
  }
}

.nav-icon {
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .nav-icon {
    font-size: 18px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .nav-icon {
    font-size: 17px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .nav-icon {
    font-size: 16px;
  }
}
@media (max-width: 1023px) {
  .nav-icon {
    font-size: 20px;
  }
}
@media (max-width: 1023px) and (min-width: 576px) and (max-width: 767px) {
  .nav-icon {
    font-size: 22px;
  }
}

.nav-login-link {
  color: rgb(255, 255, 255);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  border-radius: 4px;
  transition: background-color 0.2s ease;
  white-space: nowrap;
  padding: 8px 12px;
}
@media (max-width: 1023px) {
  .nav-login-link {
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    margin: 0;
    justify-content: flex-start;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    gap: 12px;
  }
}
@media (max-width: 1023px) and (min-width: 576px) and (max-width: 767px) {
  .nav-login-link {
    padding: 18px 24px;
    font-size: 17px;
    gap: 14px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .nav-login-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
}

@media (max-width: 1023px) {
  .top-nav .nav-container > * {
    margin: 0;
  }
  .dropdown-menu {
    transition: none !important;
  }
  .top-nav, .nav-container {
    overflow-x: hidden;
  }
  .dropdown-toggle::after {
    display: none !important;
  }
  .btn-secondary::after,
  .user-dropdown-btn::after {
    display: inline-block !important;
  }
  .dropdown-item::after {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) and (orientation: landscape) {
  .top-nav .nav-container {
    flex-direction: row;
    justify-content: space-between;
    padding: 0 20px;
  }
  .nav-left, .nav-right {
    flex-direction: row;
    gap: 15px;
  }
  .dropdown-menu {
    position: absolute !important;
    transform: translateY(0) !important;
    border-radius: 6px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  .dropdown-item {
    padding: 10px 15px !important;
    border-bottom: none !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .nav-logo .nav-logo-img {
    width: 48px;
    height: 48px;
  }
  .custom-account-link,
  .nav-login-link {
    padding: 14px 18px;
    font-size: 15px;
  }
  .dropdown .btn-secondary {
    padding: 12px 18px;
    font-size: 15px;
  }
  .user-dropdown-btn .user-name {
    font-size: 15px;
  }
}
/* ===== CORRECCIONES ESPECÍFICAS PARA MÓVILES Y TABLETAS PEQUEÑAS ===== */
/* ===== CONTAINER PRINCIPAL ===== */
@media (max-width: 360px) {
  .container {
    padding: 0 8px;
  }
}
@media (min-width: 360px) and (max-width: 575px) {
  .container {
    padding: 0 10px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .container {
    padding: 0 12px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .container {
    padding: 0 15px;
  }
}

/* ===== OPTIMIZACIÓN DE TÍTULOS ===== */
@media (max-width: 360px) {
  .title-section {
    padding: 10px 0;
    margin-top: 10px;
    gap: 8px;
  }
}
@media (max-width: 576px) {
  .title-section {
    padding: 12px 0;
    margin-top: 12px;
    gap: 10px;
  }
}
@media (max-width: 768px) {
  .title-section {
    padding: 15px 0;
    margin-top: 15px;
    gap: 12px;
  }
}

@media (max-width: 360px) {
  .subtitle {
    font-size: 20px;
    line-height: 1.1;
  }
}
@media (max-width: 576px) {
  .subtitle {
    font-size: 22px;
    line-height: 1.1;
  }
}
@media (max-width: 768px) {
  .subtitle {
    font-size: 26px;
    line-height: 1.1;
  }
}

@media (max-width: 360px) {
  .title {
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .title {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .title {
    font-size: 17px;
  }
}

/* ===== TABLA RESPONSIVA MEJORADA ===== */
.table-responsive-container {
  width: 100%;
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  .table-responsive-container {
    margin-bottom: 15px;
    padding: 0 5px;
  }
}
@media (max-width: 768px) {
  .table-responsive-container {
    padding: 0 8px;
  }
}
@media (max-width: 360px) {
  .table-responsive-container {
    padding: 0 3px;
  }
}

@media (max-width: 1024px) {
  .clients-table tbody tr, .products-table tbody tr, .data-table tbody tr {
    margin-bottom: 12px;
    padding: 10px;
    border-radius: 6px;
  }
  .clients-table td, .products-table td, .data-table td {
    padding: 8px 0;
    font-size: 12px;
  }
  .clients-table td:before, .products-table td:before, .data-table td:before {
    font-size: 11px;
    margin-right: 10px;
  }
}
@media (max-width: 768px) {
  .clients-table tbody tr, .products-table tbody tr, .data-table tbody tr {
    margin-bottom: 15px;
    padding: 15px;
    border-radius: 8px;
  }
  .clients-table td, .products-table td, .data-table td {
    padding: 10px 0;
    font-size: 14px;
  }
  .clients-table td:before, .products-table td:before, .data-table td:before {
    font-size: 13px;
    margin-right: 12px;
  }
}

/* ===== LISTA DE CLIENTES OPTIMIZADA ===== */
@media (max-width: 360px) {
  .client-list-container {
    padding: 0 4px;
  }
}
@media (max-width: 576px) {
  .client-list-container {
    padding: 0 6px;
  }
}
@media (max-width: 768px) {
  .client-list-container {
    padding: 0 8px;
  }
}

.client-card {
  margin-bottom: 12px;
  background: white;
  border-radius: 8px;
  padding: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .client-card {
    padding: 15px;
    margin-bottom: 15px;
  }
}
@media (max-width: 576px) {
  .client-card {
    padding: 10px;
    margin-bottom: 10px;
  }
}
@media (max-width: 360px) {
  .client-card {
    padding: 8px;
    margin-bottom: 8px;
  }
}

.client-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
@media (max-width: 768px) {
  .client-info {
    gap: 8px;
  }
}
@media (max-width: 576px) {
  .client-info {
    gap: 5px;
  }
}
@media (max-width: 360px) {
  .client-info {
    gap: 4px;
  }
}

.client-id {
  font-family: monospace;
  font-size: 14px;
  font-weight: bold;
  color: #333;
}
@media (max-width: 768px) {
  .client-id {
    font-size: 15px;
  }
}
@media (max-width: 576px) {
  .client-id {
    font-size: 13px;
  }
}
@media (max-width: 360px) {
  .client-id {
    font-size: 12px;
  }
}

.client-details {
  font-size: 13px;
  color: #666;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .client-details {
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .client-details {
    font-size: 12px;
  }
}
@media (max-width: 360px) {
  .client-details {
    font-size: 11px;
  }
}

.client-status {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 500;
  margin-top: 4px;
}
@media (max-width: 768px) {
  .client-status {
    padding: 3px 10px;
    font-size: 12px;
  }
}
@media (max-width: 576px) {
  .client-status {
    padding: 2px 6px;
    font-size: 10px;
  }
}
@media (max-width: 360px) {
  .client-status {
    padding: 1px 6px;
    font-size: 10px;
  }
}
.client-status.activo {
  background-color: rgba(76, 175, 80, 0.1);
  color: #4CAF50;
}
.client-status.inactivo {
  background-color: rgba(244, 67, 54, 0.1);
  color: #F44336;
}

/* ===== BÚSQUEDA OPTIMIZADA ===== */
.search-container {
  margin-bottom: 16px;
  padding: 0 4px;
  position: relative;
}
@media (max-width: 768px) {
  .search-container {
    margin-bottom: 18px;
    padding: 0 8px;
  }
}
@media (max-width: 576px) {
  .search-container {
    margin-bottom: 14px;
    padding: 0 6px;
  }
}
@media (max-width: 360px) {
  .search-container {
    margin-bottom: 12px;
  }
}
.search-container .search-input {
  width: 100%;
  height: 40px;
  padding: 8px 35px 8px 12px;
  border: 1px solid #ddd;
  border-radius: 20px;
  font-size: 14px;
  transition: all 0.2s ease;
}
.search-container .search-input:focus {
  border-color: #00a651;
  box-shadow: 0 0 0 2px rgba(0, 166, 81, 0.2);
}
@media (max-width: 768px) {
  .search-container .search-input {
    height: 44px;
    padding: 10px 40px 10px 15px;
    font-size: 15px;
  }
}
@media (max-width: 576px) {
  .search-container .search-input {
    height: 38px;
    padding: 7px 32px 7px 11px;
    font-size: 13px;
  }
}
@media (max-width: 360px) {
  .search-container .search-input {
    height: 36px;
    padding: 6px 30px 6px 10px;
    font-size: 13px;
  }
}
.search-container .search-btn {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s ease;
}
.search-container .search-btn:hover {
  background-color: rgba(0, 166, 81, 0.1);
}
@media (max-width: 768px) {
  .search-container .search-btn {
    right: 8px;
    width: 32px;
    height: 32px;
  }
}
@media (max-width: 576px) {
  .search-container .search-btn {
    right: 5px;
    width: 26px;
    height: 26px;
  }
}
@media (max-width: 360px) {
  .search-container .search-btn {
    right: 4px;
    width: 24px;
    height: 24px;
  }
}
.search-container .search-btn i {
  font-size: 14px;
  color: #666;
}
@media (max-width: 768px) {
  .search-container .search-btn i {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .search-container .search-btn i {
    font-size: 13px;
  }
}
@media (max-width: 360px) {
  .search-container .search-btn i {
    font-size: 12px;
  }
}

/* ===== BOTÓN FLOTANTE OPTIMIZADO ===== */
@media (max-width: 768px) {
  .add-button {
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    font-size: xxx-large;
  }
}
@media (max-width: 576px) {
  .add-button {
    right: 15px;
    bottom: 15px;
    width: 55px;
    height: 55px;
    font-size: xx-large;
  }
}
@media (max-width: 360px) {
  .add-button {
    right: 12px;
    bottom: 12px;
    width: 50px;
    height: 50px;
    font-size: x-large;
  }
}

/* ===== PAGINATION COMPACTA PARA MÓVILES Y TABLETAS ===== */
.pagination-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 0;
  gap: 8px;
}
@media (max-width: 768px) {
  .pagination-container {
    padding: 18px 0;
    gap: 10px;
  }
}
@media (max-width: 576px) {
  .pagination-container {
    padding: 14px 0;
    gap: 6px;
  }
}
@media (max-width: 360px) {
  .pagination-container {
    padding: 12px 0;
    gap: 4px;
  }
}

.pagination-item {
  min-width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 14px;
  transition: all 0.2s ease;
}
@media (max-width: 768px) {
  .pagination-item {
    min-width: 40px;
    height: 40px;
    font-size: 15px;
  }
}
@media (max-width: 576px) {
  .pagination-item {
    min-width: 34px;
    height: 34px;
    font-size: 13px;
  }
}
@media (max-width: 360px) {
  .pagination-item {
    min-width: 32px;
    height: 32px;
    font-size: 12px;
  }
}

/* ===== CARDS RESPONSIVAS PARA MÓVILES Y TABLETAS ===== */
.card-responsive {
  background: white;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.2s ease;
}
.card-responsive:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
@media (max-width: 768px) {
  .card-responsive {
    padding: 18px;
    margin-bottom: 15px;
    border-radius: 8px;
  }
}
@media (max-width: 576px) {
  .card-responsive {
    padding: 14px;
    margin-bottom: 10px;
    border-radius: 6px;
  }
}
@media (max-width: 360px) {
  .card-responsive {
    padding: 12px;
    margin-bottom: 8px;
    border-radius: 6px;
  }
}

/* ===== ICONOS DE ACCIÓN OPTIMIZADOS ===== */
.action-icons {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 8px;
}
@media (max-width: 768px) {
  .action-icons {
    gap: 14px;
    margin-top: 10px;
  }
}
@media (max-width: 576px) {
  .action-icons {
    gap: 10px;
    margin-top: 6px;
  }
}
@media (max-width: 360px) {
  .action-icons {
    gap: 8px;
    margin-top: 6px;
  }
}

.action-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: all 0.2s ease;
  cursor: pointer;
}
@media (max-width: 768px) {
  .action-icon {
    width: 36px;
    height: 36px;
  }
}
@media (max-width: 576px) {
  .action-icon {
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 360px) {
  .action-icon {
    width: 28px;
    height: 28px;
  }
}
.action-icon.view-action {
  color: #2196F3;
}
.action-icon.view-action:hover {
  background-color: rgba(33, 150, 243, 0.1);
}
.action-icon.delete-action {
  color: #F44336;
}
.action-icon.delete-action:hover {
  background-color: rgba(244, 67, 54, 0.1);
}

/* ===== MODAL RESPONSIVO PARA MÓVILES Y TABLETAS ===== */
@media (max-width: 768px) {
  .modal-content {
    margin: 15px;
    border-radius: 10px;
    max-height: 85vh;
    overflow-y: auto;
  }
}
@media (max-width: 576px) {
  .modal-content {
    margin: 10px;
    border-radius: 8px;
    max-height: 90vh;
    overflow-y: auto;
  }
}
@media (max-width: 360px) {
  .modal-content {
    margin: 8px;
    border-radius: 8px;
  }
}

@media (max-width: 768px) {
  .modal-header {
    padding: 16px 20px;
  }
}
@media (max-width: 576px) {
  .modal-header {
    padding: 14px 16px;
  }
}
@media (max-width: 360px) {
  .modal-header {
    padding: 12px 16px;
  }
}

@media (max-width: 768px) {
  .modal-body {
    padding: 16px 20px;
  }
}
@media (max-width: 576px) {
  .modal-body {
    padding: 14px 16px;
  }
}
@media (max-width: 360px) {
  .modal-body {
    padding: 12px 16px;
  }
}

@media (max-width: 768px) {
  .modal-footer {
    padding: 16px 20px;
  }
}
@media (max-width: 576px) {
  .modal-footer {
    padding: 14px 16px;
  }
}
@media (max-width: 360px) {
  .modal-footer {
    padding: 12px 16px;
  }
}

/* ===== FORMULARIOS COMPACTOS PARA MÓVILES Y TABLETAS ===== */
.form-group-compact {
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .form-group-compact {
    margin-bottom: 15px;
  }
}
@media (max-width: 576px) {
  .form-group-compact {
    margin-bottom: 10px;
  }
}
@media (max-width: 360px) {
  .form-group-compact {
    margin-bottom: 8px;
  }
}
.form-group-compact label {
  font-size: 13px;
  margin-bottom: 4px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .form-group-compact label {
    font-size: 14px;
    margin-bottom: 6px;
  }
}
@media (max-width: 576px) {
  .form-group-compact label {
    font-size: 12px;
  }
}
@media (max-width: 360px) {
  .form-group-compact label {
    font-size: 12px;
  }
}
.form-group-compact input, .form-group-compact select, .form-group-compact textarea {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  min-height: 44px;
}
@media (max-width: 768px) {
  .form-group-compact input, .form-group-compact select, .form-group-compact textarea {
    padding: 10px 15px;
    font-size: 15px;
    min-height: 48px;
  }
}
@media (max-width: 576px) {
  .form-group-compact input, .form-group-compact select, .form-group-compact textarea {
    padding: 7px 11px;
    font-size: 13px;
    min-height: 42px;
  }
}
@media (max-width: 360px) {
  .form-group-compact input, .form-group-compact select, .form-group-compact textarea {
    padding: 6px 10px;
    font-size: 13px;
    min-height: 40px;
  }
}

/* ===== TABLAS ULTRA RESPONSIVAS PARA MÓVILES Y TABLETAS ===== */
@media (max-width: 768px) {
  .table-ultra-responsive {
    font-size: 14px;
  }
  .table-ultra-responsive .table-cell {
    padding: 10px 8px;
  }
  .table-ultra-responsive .table-cell:before {
    font-size: 13px;
    font-weight: 600;
  }
}
@media (max-width: 576px) {
  .table-ultra-responsive {
    font-size: 12px;
  }
  .table-ultra-responsive .table-cell {
    padding: 8px 6px;
  }
  .table-ultra-responsive .table-cell:before {
    font-size: 11px;
    font-weight: 600;
  }
}
@media (max-width: 360px) {
  .table-ultra-responsive {
    font-size: 11px;
  }
  .table-ultra-responsive .table-cell {
    padding: 8px 6px;
  }
  .table-ultra-responsive .table-cell:before {
    font-size: 10px;
    font-weight: 600;
  }
}

/* ===== ESPACIADO COMPACTO PARA MÓVILES Y TABLETAS ===== */
@media (max-width: 768px) {
  .spacing-compact .mb-3 {
    margin-bottom: 1rem !important;
  }
  .spacing-compact .mb-2 {
    margin-bottom: 0.8rem !important;
  }
  .spacing-compact .p-3 {
    padding: 1rem !important;
  }
  .spacing-compact .p-2 {
    padding: 0.8rem !important;
  }
}
@media (max-width: 576px) {
  .spacing-compact .mb-3 {
    margin-bottom: 0.8rem !important;
  }
  .spacing-compact .mb-2 {
    margin-bottom: 0.6rem !important;
  }
  .spacing-compact .p-3 {
    padding: 0.8rem !important;
  }
  .spacing-compact .p-2 {
    padding: 0.6rem !important;
  }
}
@media (max-width: 360px) {
  .spacing-compact .mb-3 {
    margin-bottom: 0.75rem !important;
  }
  .spacing-compact .mb-2 {
    margin-bottom: 0.5rem !important;
  }
  .spacing-compact .p-3 {
    padding: 0.75rem !important;
  }
  .spacing-compact .p-2 {
    padding: 0.5rem !important;
  }
}

/* ===== TEXTO RESPONSIVE PARA MÓVILES Y TABLETAS ===== */
@media (max-width: 768px) {
  .text-ultra-responsive {
    font-size: 14px;
    line-height: 1.4;
  }
}
@media (max-width: 576px) {
  .text-ultra-responsive {
    font-size: 12px;
    line-height: 1.3;
  }
}
@media (max-width: 360px) {
  .text-ultra-responsive {
    font-size: 11px;
    line-height: 1.3;
  }
}

@media (max-width: 768px) {
  .text-small-responsive {
    font-size: 13px;
  }
}
@media (max-width: 576px) {
  .text-small-responsive {
    font-size: 11px;
  }
}
@media (max-width: 360px) {
  .text-small-responsive {
    font-size: 10px;
  }
}

/* ===== OVERFLOW Y SCROLL PARA MÓVILES Y TABLETAS ===== */
@media (max-width: 1024px) {
  .scroll-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
  }
}
@media (max-width: 360px) {
  .scroll-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 1024px) {
  .no-wrap-mobile {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
@media (max-width: 360px) {
  .no-wrap-mobile {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/* ===== UTILIDADES DE VISIBILIDAD PARA MÓVILES Y TABLETAS ===== */
@media (max-width: 768px) {
  .hide-on-tablet-small {
    display: none !important;
  }
}

.show-on-tablet-small {
  display: none;
}
@media (max-width: 768px) {
  .show-on-tablet-small {
    display: block !important;
  }
}

.show-on-tablet-small-flex {
  display: none;
}
@media (max-width: 768px) {
  .show-on-tablet-small-flex {
    display: flex !important;
  }
}

@media (max-width: 1024px) {
  .hide-on-mobile-extended {
    display: none !important;
  }
}

.show-on-mobile-extended {
  display: none;
}
@media (max-width: 1024px) {
  .show-on-mobile-extended {
    display: block !important;
  }
}

.show-on-mobile-extended-flex {
  display: none;
}
@media (max-width: 1024px) {
  .show-on-mobile-extended-flex {
    display: flex !important;
  }
}

@media (max-width: 360px) {
  .hide-on-narrow {
    display: none !important;
  }
}

.show-on-narrow {
  display: none;
}
@media (max-width: 360px) {
  .show-on-narrow {
    display: block !important;
  }
}

.show-on-narrow-flex {
  display: none;
}
@media (max-width: 360px) {
  .show-on-narrow-flex {
    display: flex !important;
  }
}

.show-on-narrow-inline {
  display: none;
}
@media (max-width: 360px) {
  .show-on-narrow-inline {
    display: inline !important;
  }
}

/* ===== OPTIMIZACIÓN DE PERFORMANCE PARA MÓVILES Y TABLETAS ===== */
@media (max-width: 1024px) {
  .card, .modal-content, .dropdown-menu, .client-card {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) !important;
  }
  *, *:before, *:after {
    transition-duration: 0.15s !important;
  }
}
/* ===== LANDSCAPE ORIENTATION PARA TABLETAS ===== */
@media (max-width: 1024px) and (orientation: landscape) {
  .top-nav {
    min-height: 48px;
  }
  .client-card, .card-responsive {
    padding: 8px 12px;
  }
  .modal-content {
    max-height: 90vh;
    overflow-y: auto;
  }
  .clients-table tbody tr, .products-table tbody tr {
    padding: 8px 15px;
  }
}
/* ===== OPTIMIZACIONES ESPECÍFICAS PARA iPADS ===== */
@media (min-width: 768px) and (max-width: 1023px) {
  .container {
    padding: 0 20px;
  }
  .search-container .search-input {
    height: 48px;
    font-size: 16px;
  }
  .add-button {
    width: 70px;
    height: 70px;
  }
  .pagination-item {
    min-width: 44px;
    height: 44px;
    font-size: 16px;
  }
  .action-icon {
    width: 40px;
    height: 40px;
  }
}
/* ===== ACCESIBILIDAD TOUCH PARA MÓVILES Y TABLETAS ===== */
@media (max-width: 1024px) {
  button, .btn, a, input[type=button], input[type=submit] {
    min-height: 42px;
    min-width: 42px;
  }
}
@media (max-width: 1024px) and (max-width: 768px) {
  button, .btn, a, input[type=button], input[type=submit] {
    min-height: 44px;
    min-width: 44px;
  }
}
/* ===== PAGINACIÓN CON ELEMENTOS SEPARADOS PARA TODOS LOS MÓDULOS ===== */
.container:not(.sol-container) .pagination,
.container:not(.sol-container) nav[aria-label="Page navigation"],
.container:not(.sol-container) .d-flex.justify-content-center:has(.pagination),
.container:not(.sol-container) .mt-3.d-flex.justify-content-center {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative !important;
  z-index: 10 !important;
  margin: 20px auto !important;
  width: 100% !important;
  max-width: 100% !important;
  justify-content: center !important;
  clear: both !important;
}
@media (max-width: 1023px) {
  .container:not(.sol-container) .pagination,
  .container:not(.sol-container) nav[aria-label="Page navigation"],
  .container:not(.sol-container) .d-flex.justify-content-center:has(.pagination),
  .container:not(.sol-container) .mt-3.d-flex.justify-content-center {
    margin: 15px auto !important;
    padding: 0 10px !important;
  }
}

.mt-3.d-flex.justify-content-start.align-items-center.ms-5 {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
  margin: 20px 0 !important;
  padding: 0 !important;
}
.mt-3.d-flex.justify-content-start.align-items-center.ms-5 nav[aria-label="Page navigation"] {
  display: flex !important;
  justify-content: center !important;
}
.mt-3.d-flex.justify-content-start.align-items-center.ms-5 nav[aria-label="Page navigation"] .pagination.justify-content-center {
  display: flex !important;
  padding: 0 !important;
  margin: 0 !important;
  list-style: none !important;
  gap: 0 !important;
  column-gap: 0 !important;
  row-gap: 0 !important;
  justify-content: center !important;
  align-items: center !important;
}
.mt-3.d-flex.justify-content-start.align-items-center.ms-5 nav[aria-label="Page navigation"] .pagination.justify-content-center .page-item {
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  position: relative !important;
}
.mt-3.d-flex.justify-content-start.align-items-center.ms-5 nav[aria-label="Page navigation"] .pagination.justify-content-center .page-item:first-child .page-link {
  border-top-left-radius: 0.375rem !important;
  border-bottom-left-radius: 0.375rem !important;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
.mt-3.d-flex.justify-content-start.align-items-center.ms-5 nav[aria-label="Page navigation"] .pagination.justify-content-center .page-item:last-child .page-link {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  border-top-right-radius: 0.375rem !important;
  border-bottom-right-radius: 0.375rem !important;
}
.mt-3.d-flex.justify-content-start.align-items-center.ms-5 nav[aria-label="Page navigation"] .pagination.justify-content-center .page-item:not(:first-child):not(:last-child) .page-link {
  border-radius: 0 !important;
}
.mt-3.d-flex.justify-content-start.align-items-center.ms-5 nav[aria-label="Page navigation"] .pagination.justify-content-center .page-item .page-link {
  margin: 0 !important;
  padding: 0.5rem 0.75rem !important;
  border: 1px solid #dee2e6 !important;
  border-right: 0 !important;
  background-color: #fff !important;
  color: #6c757d !important;
  text-decoration: none !important;
  font-size: 1rem !important;
  display: block !important;
  position: relative !important;
  transition: all 0.15s ease-in-out !important;
  min-width: 44px !important;
  min-height: 44px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.mt-3.d-flex.justify-content-start.align-items-center.ms-5 nav[aria-label="Page navigation"] .pagination.justify-content-center .page-item .page-link:hover, .mt-3.d-flex.justify-content-start.align-items-center.ms-5 nav[aria-label="Page navigation"] .pagination.justify-content-center .page-item .page-link:focus {
  color: #2e7d32 !important;
  text-decoration: none !important;
  background-color: #e9ecef !important;
  z-index: 2 !important;
}
.mt-3.d-flex.justify-content-start.align-items-center.ms-5 nav[aria-label="Page navigation"] .pagination.justify-content-center .page-item:last-child .page-link {
  border-right: 1px solid #dee2e6 !important;
}
.mt-3.d-flex.justify-content-start.align-items-center.ms-5 nav[aria-label="Page navigation"] .pagination.justify-content-center .page-item.active .page-link {
  background-color: rgba(165, 214, 167, 0.8) !important;
  border-color: rgb(165, 214, 167) !important;
  color: #2e7d32 !important;
  font-weight: 600 !important;
  z-index: 3 !important;
}

.pagination {
  gap: 0 !important;
  column-gap: 0 !important;
  row-gap: 0 !important;
  display: flex !important;
  justify-content: center !important;
}
.pagination .page-item {
  margin: 0 !important;
  display: flex !important;
}
.pagination .page-item .page-link {
  margin: 0 !important;
  border-right: 0 !important;
}
.pagination .page-item:last-child .page-link {
  border-right: 1px solid #dee2e6 !important;
}

.pagination .page-item + .page-item .page-link {
  margin-left: 0 !important;
  border-left: 1px solid #dee2e6 !important;
}

.pagination .page-item:not(:first-child) .page-link {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.pagination .page-item:not(:last-child) .page-link {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.pagination .page-item:first-child .page-link {
  border-top-left-radius: 0.375rem !important;
  border-bottom-left-radius: 0.375rem !important;
}

.pagination .page-item:last-child .page-link {
  border-top-right-radius: 0.375rem !important;
  border-bottom-right-radius: 0.375rem !important;
}

@media (max-width: 575px) {
  .pagination {
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 0 !important;
  }
  .pagination .page-link {
    padding: 0.4rem 0.6rem !important;
    font-size: 14px !important;
    min-width: 40px !important;
    min-height: 40px !important;
  }
  .mt-3.d-flex.justify-content-start.align-items-center.ms-5 .pagination.justify-content-center {
    gap: 0 !important;
  }
}
.sol-pagination-container,
.mt-3.d-flex.justify-content-center.align-items-center {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  margin: 30px 0 !important;
  gap: 15px !important;
  flex-wrap: wrap !important;
}
@media (max-width: 1023px) {
  .sol-pagination-container,
  .mt-3.d-flex.justify-content-center.align-items-center {
    margin: 20px 0 !important;
    gap: 12px !important;
  }
}
@media (max-width: 1023px) and (min-width: 576px) and (max-width: 767px) {
  .sol-pagination-container,
  .mt-3.d-flex.justify-content-center.align-items-center {
    margin: 25px 0 !important;
    gap: 14px !important;
  }
}

.sol-pagination-arrow {
  border: 1px solid #ddd !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  background-color: #fff !important;
  transition: all 0.2s ease !important;
  position: relative !important;
}
@media (min-width: 576px) and (max-width: 767px) {
  .sol-pagination-arrow {
    width: 48px !important;
    height: 48px !important;
  }
}
@media (max-width: 575px) {
  .sol-pagination-arrow {
    width: 40px !important;
    height: 40px !important;
  }
}
.sol-pagination-arrow a {
  color: #999 !important;
  text-decoration: none !important;
  font-size: 18px !important;
  font-weight: bold !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  height: 100% !important;
  border-radius: 50% !important;
}
@media (min-width: 576px) and (max-width: 767px) {
  .sol-pagination-arrow a {
    font-size: 20px !important;
  }
}
@media (max-width: 575px) {
  .sol-pagination-arrow a {
    font-size: 16px !important;
  }
}
.sol-pagination-arrow a:hover, .sol-pagination-arrow a:focus, .sol-pagination-arrow a:active, .sol-pagination-arrow a:visited {
  text-decoration: none !important;
}
@media (hover: hover) and (pointer: fine) {
  .sol-pagination-arrow a:hover {
    color: rgb(76, 175, 80) !important;
    transform: scale(1.05) !important;
  }
}

.sol-pagination-number {
  color: rgb(76, 175, 80) !important;
  margin: 0 -10px !important;
  font-weight: bold !important;
  font-size: clamp(16px, 3vw, 20px) !important;
  min-width: 30px !important;
  text-align: center !important;
}
@media (min-width: 576px) and (max-width: 767px) {
  .sol-pagination-number {
    margin: 0 18px !important;
    font-size: clamp(18px, 3vw, 22px) !important;
  }
}
@media (max-width: 575px) {
  .sol-pagination-number {
    margin: 0 10px !important;
    font-size: clamp(14px, 4vw, 18px) !important;
  }
}

.mt-3.d-flex.justify-content-start.align-items-center.ms-5 {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  margin-top: 25px !important;
  margin-left: 20px !important;
  gap: 10px !important;
  flex-wrap: wrap !important;
}
@media (max-width: 1023px) {
  .mt-3.d-flex.justify-content-start.align-items-center.ms-5 {
    justify-content: center !important;
    margin-left: 0 !important;
    margin-top: 20px !important;
  }
}
@media (max-width: 1023px) and (min-width: 576px) and (max-width: 767px) {
  .mt-3.d-flex.justify-content-start.align-items-center.ms-5 {
    margin-top: 25px !important;
    gap: 12px !important;
  }
}

.sol-page-label {
  font-size: 14px !important;
  color: #666 !important;
  font-weight: 500 !important;
  margin-right: 8px !important;
}
@media (min-width: 576px) and (max-width: 767px) {
  .sol-page-label {
    font-size: 15px !important;
    margin-right: 10px !important;
  }
}
@media (max-width: 575px) {
  .sol-page-label {
    font-size: 13px !important;
    margin-right: 6px !important;
  }
}

.sol-select-container {
  position: relative !important;
  display: inline-block !important;
}

.sol-page-select {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  background-color: #fff !important;
  border: 1px solid #ddd !important;
  border-radius: 4px !important;
  padding: 6px 30px 6px 12px !important;
  font-size: 14px !important;
  color: #333 !important;
  cursor: pointer !important;
  min-width: 60px !important;
  text-align: center !important;
}
@media (min-width: 576px) and (max-width: 767px) {
  .sol-page-select {
    padding: 8px 32px 8px 14px !important;
    font-size: 15px !important;
    min-width: 65px !important;
  }
}
@media (max-width: 575px) {
  .sol-page-select {
    padding: 5px 28px 5px 10px !important;
    font-size: 13px !important;
    min-width: 55px !important;
  }
}
.sol-page-select:focus {
  outline: 2px solid rgb(76, 175, 80) !important;
  outline-offset: 2px !important;
  border-color: rgb(76, 175, 80) !important;
}

.sol-select-arrow {
  position: absolute !important;
  right: 8px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  pointer-events: none !important;
  font-size: 10px !important;
  color: #666 !important;
}
@media (min-width: 576px) and (max-width: 767px) {
  .sol-select-arrow {
    right: 10px !important;
    font-size: 11px !important;
  }
}
@media (max-width: 575px) {
  .sol-select-arrow {
    right: 6px !important;
    font-size: 9px !important;
  }
}

.sol-page-total {
  font-size: 14px !important;
  color: #666 !important;
  font-weight: 500 !important;
  margin-left: 8px !important;
}
@media (min-width: 576px) and (max-width: 767px) {
  .sol-page-total {
    font-size: 15px !important;
    margin-left: 10px !important;
  }
}
@media (max-width: 575px) {
  .sol-page-total {
    font-size: 13px !important;
    margin-left: 6px !important;
  }
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.pagination *:focus-visible,
.sol-pagination-container *:focus-visible {
  outline: 2px solid rgb(76, 175, 80);
  outline-offset: 2px;
}
.pagination a, .pagination button, .pagination select,
.sol-pagination-container a,
.sol-pagination-container button,
.sol-pagination-container select {
  min-width: 44px;
  min-height: 44px;
}
@media (min-width: 576px) and (max-width: 767px) {
  .pagination a, .pagination button, .pagination select,
  .sol-pagination-container a,
  .sol-pagination-container button,
  .sol-pagination-container select {
    min-width: 48px;
    min-height: 48px;
  }
}
@media (max-width: 575px) {
  .pagination a, .pagination button, .pagination select,
  .sol-pagination-container a,
  .sol-pagination-container button,
  .sol-pagination-container select {
    min-width: 40px;
    min-height: 40px;
  }
}

.pagination a, .pagination .page-link, .sol-pagination-container a, .sol-pagination-container .page-link {
  text-decoration: none !important;
  border-bottom: none !important;
}
.pagination a:link, .pagination a:visited, .pagination a:hover, .pagination a:active, .pagination a:focus, .pagination .page-link:link, .pagination .page-link:visited, .pagination .page-link:hover, .pagination .page-link:active, .pagination .page-link:focus, .sol-pagination-container a:link, .sol-pagination-container a:visited, .sol-pagination-container a:hover, .sol-pagination-container a:active, .sol-pagination-container a:focus, .sol-pagination-container .page-link:link, .sol-pagination-container .page-link:visited, .sol-pagination-container .page-link:hover, .sol-pagination-container .page-link:active, .sol-pagination-container .page-link:focus {
  text-decoration: none !important;
  border-bottom: none !important;
}

.container:not(.sol-container) .pagination.justify-content-center {
  justify-content: center !important;
}
.container:not(.sol-container) nav[aria-label=pagination],
.container:not(.sol-container) nav[aria-label="Page navigation"] {
  width: 100% !important;
  margin: 20px 0 !important;
  display: block !important;
  text-align: center !important;
}
@media (max-width: 1023px) {
  .container:not(.sol-container) nav[aria-label=pagination],
  .container:not(.sol-container) nav[aria-label="Page navigation"] {
    margin: 15px 0 !important;
    text-align: center !important;
  }
}
@media (max-width: 1023px) and (min-width: 576px) and (max-width: 767px) {
  .container:not(.sol-container) nav[aria-label=pagination],
  .container:not(.sol-container) nav[aria-label="Page navigation"] {
    margin: 18px 0 !important;
    text-align: center !important;
  }
}
.container:not(.sol-container) nav[aria-label=pagination] .pagination,
.container:not(.sol-container) nav[aria-label="Page navigation"] .pagination {
  margin: 0 auto !important;
  display: inline-flex !important;
}
.container:not(.sol-container) .d-flex.justify-content-center:has(.pagination) {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
  margin: 20px 0 !important;
  text-align: center !important;
}
@media (max-width: 1023px) {
  .container:not(.sol-container) .d-flex.justify-content-center:has(.pagination) {
    margin: 15px 0 !important;
    justify-content: center !important;
  }
}
@media (max-width: 1023px) and (min-width: 576px) and (max-width: 767px) {
  .container:not(.sol-container) .d-flex.justify-content-center:has(.pagination) {
    margin: 18px 0 !important;
    justify-content: center !important;
  }
}
@media (min-width: 1024px) {
  .container:not(.sol-container) .d-flex.justify-content-center:has(.pagination) {
    justify-content: center !important;
    align-items: center !important;
  }
}

.container:not(.sol-container) .pagination {
  z-index: 10 !important;
  position: relative !important;
}
.container:not(.sol-container) .page-link {
  z-index: 10 !important;
  position: relative !important;
}
.container:not(.sol-container) .page-link.active, .container:not(.sol-container) .page-link:hover {
  z-index: 12 !important;
}

.sol-container .sol-pagination-container,
.sol-container .sol-page-selector {
  z-index: 10;
  position: relative;
}

/* ===== ESTILOS BASE ESPECÍFICOS DEL MANAGER ===== */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #fff;
  min-height: 100vh;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  min-height: 80vh;
  padding: 0 20px;
}
@media (max-width: 1023px) {
  .container {
    max-width: 100%;
    padding: 0 15px;
    overflow-x: hidden;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .container {
    padding: 0 20px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1400px;
  }
}

/* ===== FOOTER ESPECÍFICO DEL MANAGER ===== */
.footer {
  text-align: center;
  color: rgb(128, 128, 128);
  font-size: 14px;
  padding: 20px 10px;
  margin-top: auto;
}
@media (max-width: 1023px) {
  .footer {
    padding: 15px 10px;
    font-size: 13px;
  }
}
.footer hr {
  border: 0;
  border-top: 2px solid rgb(204, 204, 204);
  margin: 10px auto;
  width: 60%;
}
@media (max-width: 1023px) {
  .footer hr {
    width: 90%;
  }
}

/* ===== NAVEGACIÓN DESKTOP ESPECÍFICA DEL MANAGER ===== */
@media (min-width: 1024px) {
  .top-nav {
    background-color: rgb(23, 165, 77);
    padding: 12px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgb(255, 255, 255) !important;
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .nav-left, .nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  .nav-left a:not(.custom-account-link) {
    color: rgb(255, 255, 255);
    text-decoration: none;
    display: flex;
    align-items: center;
    height: 50px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
  }
}
@media (min-width: 1024px) and (hover: hover) and (pointer: fine) {
  .nav-left a:not(.custom-account-link):hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
}
/* ===== ENLACES DE AUTENTICACIÓN ESPECÍFICOS DEL MANAGER ===== */
.auth-link {
  background-color: rgb(255, 255, 255);
  color: rgb(23, 165, 77) !important;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.2s ease;
  white-space: nowrap;
}
@media (hover: hover) and (pointer: fine) {
  .auth-link:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
  }
}
@media (max-width: 1023px) {
  .auth-link {
    padding: 6px 12px;
    font-size: 13px;
  }
}
@media (max-width: 319px) {
  .auth-link {
    padding: 4px 8px;
    font-size: 11px;
  }
}

/* ===== SECCIÓN DE NAVEGACIÓN ESPECÍFICA DEL MANAGER ===== */
.back-section {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 1023px) {
  .back-section {
    gap: 10px;
    flex-wrap: wrap;
  }
}

.title-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  margin-top: 10px;
  gap: 20px;
}
@media (max-width: 1023px) {
  .title-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin-top: 15px;
    padding: 15px 0;
  }
}

/* ===== TÍTULOS ESPECÍFICOS DEL MANAGER ===== */
.subtitle {
  font-weight: bold;
  font-size: clamp(24px, 5vw, 32px);
  line-height: 1.2;
}
@media (max-width: 1023px) {
  .subtitle {
    font-size: clamp(20px, 5vw, 28px);
  }
}

.title {
  font-size: clamp(18px, 4vw, 24px);
  color: rgb(46, 48, 50);
  line-height: 1.3;
}
@media (max-width: 1023px) {
  .title {
    font-size: clamp(16px, 4vw, 20px);
    align-self: flex-end;
  }
}

/* ===== MODALES ESPECÍFICOS DEL MANAGER ===== */
.modal-glass, #successModal .modal-content {
  background: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(20px) saturate(200%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(200%) !important;
  border-radius: 15px !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2) !important;
}

/* ===== DROPDOWN ESPECÍFICO DEL MANAGER ===== */
@media (min-width: 1024px) {
  .dropdown .btn-secondary {
    background-color: rgb(23, 165, 77) !important;
    color: rgb(255, 255, 255) !important;
    border: 2px solid rgba(0, 0, 0, 0) !important;
    border-radius: 10px !important;
    padding: 8px 16px;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
    min-width: 120px;
  }
}
@media (min-width: 1024px) and (hover: hover) and (pointer: fine) {
  .dropdown .btn-secondary:hover, .dropdown .btn-secondary:focus, .dropdown .btn-secondary:active {
    background-color: rgb(255, 255, 255) !important;
    color: rgb(23, 165, 77) !important;
    border: 2px solid rgb(23, 165, 77) !important;
  }
}
@media (min-width: 1024px) {
  .dropdown-menu {
    border-radius: 10px !important;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    min-width: 200px;
  }
  .dropdown-menu .dropdown-item {
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    color: rgb(0, 0, 0) !important;
    font-weight: bold;
  }
}
@media (min-width: 1024px) and (hover: hover) and (pointer: fine) {
  .dropdown-menu .dropdown-item:hover, .dropdown-menu .dropdown-item:focus {
    background-color: rgb(23, 165, 77) !important;
    color: rgb(255, 255, 255) !important;
  }
}
/* ===== MODALES DE ÉXITO Y ERROR ESPECÍFICOS DEL MANAGER ===== */
#successModal .modal-dialog, #errorModal .modal-dialog {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  max-width: min(500px, 95vw);
  width: 100%;
  z-index: 1050;
  transition: all 0.3s ease;
}
@media (max-width: 1023px) {
  #successModal .modal-dialog, #errorModal .modal-dialog {
    bottom: 10px;
    max-width: 95vw;
  }
}

#successModal .modal-content {
  background-color: rgb(204, 244, 220) !important;
}
#successModal .modal-content .modal-body {
  padding: 15px;
}
#successModal .modal-content .modal-body .d-flex {
  align-items: center;
  gap: 10px;
}
@media (max-width: 1023px) {
  #successModal .modal-content .modal-body .d-flex {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}
#successModal .modal-content .modal-body h5 {
  font-size: clamp(14px, 3vw, 16px);
  font-weight: bold;
  color: rgb(0, 191, 99);
  margin: 0;
}
#successModal .modal-content .modal-body p {
  font-size: clamp(12px, 2.5vw, 14px);
  color: rgb(51, 51, 51);
  margin: 0;
}

#errorModal .modal-content {
  background-color: rgb(242, 212, 212) !important;
}
#errorModal .modal-content .error-modal-title {
  font-size: clamp(14px, 3vw, 16px);
  font-weight: bold;
  color: rgb(255, 49, 49) !important;
}
#errorModal .modal-content .error-message p {
  font-size: clamp(12px, 2.5vw, 14px);
  color: rgb(51, 51, 51);
  font-weight: bold;
}
@media (max-width: 1023px) {
  #errorModal .modal-content .error-message p {
    text-align: center;
  }
}

/* ===== CONTENEDOR DE ERROR ESPECÍFICO DEL MANAGER ===== */
.error-container {
  text-align: left;
  padding: 20px;
}
@media (max-width: 1023px) {
  .error-container {
    text-align: center;
    padding: 15px;
  }
}
.error-container .error-text {
  color: #198754;
  font-weight: bold;
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 10px;
}
.error-container .error-message {
  font-size: clamp(1rem, 3vw, 1.2rem);
  color: #343a40;
  line-height: 1.4;
}
.error-container .error-image {
  max-width: 100%;
  height: auto;
  margin: 20px 0;
}

/* ===== TABLAS RESPONSIVAS ESPECÍFICAS DEL MANAGER ===== */
.responsive-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
}
@media (max-width: 1023px) {
  .responsive-table thead {
    display: none;
  }
  .responsive-table tbody tr {
    display: block;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    padding: 5px;
  }
  .responsive-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    text-align: right;
    min-height: 44px;
  }
  .responsive-table td:before {
    content: attr(data-label);
    font-weight: bold;
    margin-right: 10px;
    text-align: left;
    flex: 1;
    color: #666;
  }
  .responsive-table td > * {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  .responsive-table td:last-child {
    border-bottom: none;
  }
  .responsive-table td[data-label=Acciones] {
    justify-content: flex-end;
  }
  .responsive-table td[data-label=Acciones]:before {
    flex: none;
    margin-right: 15px;
  }
  .responsive-table td[data-label=Acciones] > * {
    justify-content: flex-end;
  }
}

/* ===== UTILITIES RESPONSIVE ESPECÍFICAS DEL MANAGER ===== */
.text-responsive {
  font-size: clamp(14px, 3vw, 16px);
}

.padding-responsive {
  padding: clamp(10px, 2vw, 20px);
}

.margin-responsive {
  margin: clamp(10px, 2vw, 20px);
}

/* ===== FOCUS STATES PARA ACCESIBILIDAD ===== */
*:focus-visible {
  outline: 2px solid rgb(76, 175, 80);
  outline-offset: 2px;
}

/* ===== SMOOTH SCROLLING ===== */
html {
  scroll-behavior: smooth;
}

/* ===== MEJORAS DE PERFORMANCE ===== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
/* ===== PRINT STYLES ESPECÍFICOS DEL MANAGER ===== */
@media print {
  .no-print {
    display: none !important;
  }
  .print-visible {
    display: block !important;
  }
  body {
    font-size: 12pt;
    color: black !important;
    background: white !important;
  }
}
/* ===== CLASES DE UTILIDAD PARA MOSTRAR/OCULTAR EN DIFERENTES DISPOSITIVOS ===== */
.mobile-only {
  display: none;
}
@media (max-width: 1023px) {
  .mobile-only {
    display: block !important;
  }
}

.tablet-only {
  display: none;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .tablet-only {
    display: block !important;
  }
}

.desktop-only {
  display: block;
}
@media (max-width: 1023px) {
  .desktop-only {
    display: none !important;
  }
}

.mobile-tablet-only {
  display: none;
}
@media (max-width: 1023px) {
  .mobile-tablet-only {
    display: block !important;
  }
}

.tablet-desktop-only {
  display: none;
}
@media (min-width: 768px) {
  .tablet-desktop-only {
    display: block !important;
  }
}
/*!************************************************************************************************************************************************************************************************!*\
  !*** css ../node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!../node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!../manager/static/manager/sass/variables.sass ***!
  \************************************************************************************************************************************************************************************************/
@charset "UTF-8";
/* ===== COLORES GLOBALES ===== */
/* ===== BREAKPOINTS GLOBALES ===== */
/* ===== MIXINS GLOBALES ===== */
/* ===== VARIABLES DE DISEÑO GLOBALES ===== */
/* ===== Z-INDEX SCALE ===== */
/* ===== SPACING SCALE ===== */
/* ===== FONT SIZES ===== */
/* ===== FUNCIONES DE COLOR COMPATIBLES ===== */
/* ===== MIXINS DE UTILIDAD ===== */
/* ===== ANIMACIONES GLOBALES ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
/* ===== UTILIDADES DE ACCESIBILIDAD ===== */
/* ===== UTILIDADES DE PRINT ===== */
/*!**************************************************************************************************************************************************************************************************************************!*\
  !*** css ../node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!../node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!../card_authorizer/static/card_authorizer/sass/products_clientsvip.sass ***!
  \**************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
/* ===== COLORES GLOBALES ===== */
/* ===== BREAKPOINTS GLOBALES ===== */
/* ===== MIXINS GLOBALES ===== */
/* ===== VARIABLES DE DISEÑO GLOBALES ===== */
/* ===== Z-INDEX SCALE ===== */
/* ===== SPACING SCALE ===== */
/* ===== FONT SIZES ===== */
/* ===== FUNCIONES DE COLOR COMPATIBLES ===== */
/* ===== MIXINS DE UTILIDAD ===== */
/* ===== ANIMACIONES GLOBALES ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
/* ===== UTILIDADES DE ACCESIBILIDAD ===== */
/* ===== UTILIDADES DE PRINT ===== */
/* ===== CONTENEDORES PRINCIPALES ===== */
.products-container,
.clients-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
}
@media (max-width: 575px) {
  .products-container,
  .clients-container {
    padding: 15px 10px;
  }
}
@media (max-width: 319px) {
  .products-container,
  .clients-container {
    padding: 10px 5px;
  }
}

/* ===== TÍTULOS Y NAVEGACIÓN ===== */
.page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding: 15px 0;
  border-bottom: 1px solid #e0e0e0;
}
@media (max-width: 575px) {
  .page-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    text-align: left;
  }
}

.page-title {
  font-size: clamp(20px, 4vw, 24px);
  font-weight: bold;
  color: #333;
  margin: 0;
}

.page-subtitle {
  font-size: clamp(14px, 2.5vw, 16px);
  color: #666;
  margin: 0;
}

/* ===== BÚSQUEDA Y FILTROS ===== */
.search-filter-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  gap: 15px;
}
@media (max-width: 575px) {
  .search-filter-container {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
}

.search-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  flex: 1;
  max-width: 400px;
}
@media (max-width: 575px) {
  .search-wrapper {
    max-width: 100%;
  }
}
.search-wrapper .search-input {
  width: 100%;
  height: 44px;
  padding: 10px 40px 10px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 25px;
  font-size: 16px;
  outline: none;
  transition: border-color 0.2s ease;
}
.search-wrapper .search-input:focus {
  border-color: rgb(76, 175, 80);
  box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2);
}
.search-wrapper .search-input::placeholder {
  color: #666;
}
.search-wrapper .search-btn {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: #666;
  transition: color 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  .search-wrapper .search-btn:hover {
    color: rgb(76, 175, 80);
  }
}
.search-wrapper .search-btn i {
  font-size: 16px;
}

.filter-controls {
  display: flex;
  gap: 10px;
  align-items: center;
}
@media (max-width: 575px) {
  .filter-controls {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ===== TABLA DE DATOS ===== */
.data-table-container {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .data-table-container {
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
  }
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}
@media (max-width: 575px) {
  .data-table {
    min-width: 100%;
  }
}
.data-table th {
  padding: 15px;
  text-align: left;
  font-weight: 600;
  font-size: clamp(12px, 2.5vw, 14px);
  color: #333;
  border-bottom: 2px solid #e0e0e0;
}
@media (max-width: 575px) {
  .data-table th {
    display: none;
  }
}
.data-table td {
  padding: 15px;
  text-align: left;
  font-size: clamp(12px, 2.5vw, 14px);
  color: #333;
  border-bottom: 1px solid #f0f0f0;
  vertical-align: middle;
  min-height: 60px;
}
@media (max-width: 575px) {
  .data-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    min-height: 44px;
  }
  .data-table td:before {
    content: attr(data-label);
    font-weight: bold;
    margin-right: 15px;
    color: #666;
    flex: 1;
  }
  .data-table td:last-child {
    border-bottom: none;
  }
}
.data-table tr {
  transition: background-color 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  .data-table tr:hover {
    background-color: #f8f9fa;
  }
}
@media (max-width: 575px) {
  .data-table tr {
    display: block;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    border: none;
  }
}

/* ===== BOTONES DE ACCIÓN ===== */
.action-buttons {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
}
@media (max-width: 575px) {
  .action-buttons {
    justify-content: flex-end;
    flex: none;
  }
}

.action-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
  transition: all 0.2s ease;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.action-btn.view-btn {
  color: #1E88E5;
}
@media (hover: hover) and (pointer: fine) {
  .action-btn.view-btn:hover {
    background-color: rgba(30, 136, 229, 0.1);
    transform: scale(1.05);
  }
}
.action-btn.edit-btn {
  color: rgb(76, 175, 80);
}
@media (hover: hover) and (pointer: fine) {
  .action-btn.edit-btn:hover {
    background-color: rgba(76, 175, 80, 0.1);
    transform: scale(1.05);
  }
}
.action-btn.delete-btn {
  color: #E53935;
}
@media (hover: hover) and (pointer: fine) {
  .action-btn.delete-btn:hover {
    background-color: rgba(229, 57, 53, 0.1);
    transform: scale(1.05);
  }
}
.action-btn i {
  font-size: 16px;
}
@media (max-width: 575px) {
  .action-btn i {
    font-size: 18px;
  }
}

/* ===== BOTONES DE ACCIÓN FLEXIBLES ===== */
.action-buttons-container {
  display: flex;
  gap: 8px;
  width: 100%;
}
.action-buttons-container:has(.action-btn:not(.invisible):only-child), .action-buttons-container:has(.action-btn:not(.invisible)):first-child:last-child {
  justify-content: flex-start;
  padding-left: 15px;
}
.action-buttons-container:has(.action-btn:not(.invisible)) + .action-btn:not(.invisible) {
  justify-content: center;
}

.invisible {
  visibility: hidden;
  opacity: 0;
  width: 0;
  padding: 0;
  margin: 0;
}

/* ===== ESTADOS Y BADGES ===== */
.status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.status-badge.active {
  background-color: rgba(76, 175, 80, 0.1);
  color: #2e7d32;
}
.status-badge.inactive {
  background-color: rgba(229, 57, 53, 0.1);
  color: #c62828;
}
.status-badge.pending {
  background-color: rgba(255, 193, 7, 0.1);
  color: #ef6c00;
}

/* ===== BOTÓN FLOTANTE AGREGAR ===== */
.add-button-container {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 100;
}
@media (max-width: 575px) {
  .add-button-container {
    right: 15px;
    bottom: 15px;
  }
}

.add-btn {
  width: 60px;
  height: 60px;
  background-color: rgb(76, 175, 80);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (hover: hover) and (pointer: fine) {
  .add-btn:hover {
    background-color: rgb(0, 128, 0);
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(76, 175, 80, 0.4);
  }
}
@media (max-width: 575px) {
  .add-btn {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}

/* ===== CARDS RESPONSIVE (ALTERNATIVA A TABLA) ===== */
.data-cards-container {
  display: none;
}
@media (max-width: 575px) {
  .data-cards-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 20px;
  }
}

.data-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: box-shadow 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  .data-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.card-title {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin: 0;
}

.card-actions {
  display: flex;
  gap: 5px;
}

.card-body .card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding: 5px 0;
}
.card-body .card-row:last-child {
  margin-bottom: 0;
}
.card-body .card-label {
  font-size: 12px;
  color: #666;
  font-weight: 500;
}
.card-body .card-value {
  font-size: 14px;
  color: #333;
  font-weight: 500;
  text-align: right;
}

/* ===== EMPTY STATE ===== */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: #666;
}
.empty-state .empty-icon {
  font-size: 48px;
  margin-bottom: 20px;
  opacity: 0.5;
}
.empty-state .empty-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #333;
}
.empty-state .empty-message {
  font-size: 14px;
  line-height: 1.5;
}

/* ===== LOADING STATE ===== */
.loading-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid rgb(76, 175, 80);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* ===== RESPONSIVE UTILITIES ===== */
.mobile-only {
  display: none;
}
@media (max-width: 575px) {
  .mobile-only {
    display: block;
  }
}

.desktop-only {
  display: block;
}
@media (max-width: 575px) {
  .desktop-only {
    display: none;
  }
}

.mobile-flex {
  display: none;
}
@media (max-width: 575px) {
  .mobile-flex {
    display: flex;
  }
}
/*!***************************************************************************************************************************************************************************************************************!*\
  !*** css ../node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!../node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!../module_requests/static/module_requests/sass/requests.sass ***!
  \***************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
/* ===== COLORES GLOBALES ===== */
/* ===== BREAKPOINTS GLOBALES ===== */
/* ===== MIXINS GLOBALES ===== */
/* ===== VARIABLES DE DISEÑO GLOBALES ===== */
/* ===== Z-INDEX SCALE ===== */
/* ===== SPACING SCALE ===== */
/* ===== FONT SIZES ===== */
/* ===== FUNCIONES DE COLOR COMPATIBLES ===== */
/* ===== MIXINS DE UTILIDAD ===== */
/* ===== ANIMACIONES GLOBALES ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
/* ===== UTILIDADES DE ACCESIBILIDAD ===== */
/* ===== UTILIDADES DE PRINT ===== */
.container:has(.sol-container),
.container:has(.apr-container) {
  max-width: 100%;
  margin: 0;
  padding: 0;
  background-color: #fff;
  border-radius: 15px;
}
@media (max-width: 575px) {
  .container:has(.sol-container),
  .container:has(.apr-container) {
    margin: 0;
    border-radius: 10px;
    padding: 0 10px;
  }
}
@media (max-width: 319px) {
  .container:has(.sol-container),
  .container:has(.apr-container) {
    border-radius: 5px;
  }
}

.nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  margin-bottom: 15px;
  gap: 10px;
}
@media (max-width: 575px) {
  .nav-header {
    padding: 12px 15px;
    flex-wrap: wrap;
    gap: 8px;
  }
}
@media (max-width: 319px) {
  .nav-header {
    padding: 10px;
  }
}

.back-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  text-decoration: none;
  color: #333;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
@media (hover: hover) and (pointer: fine) {
  .back-btn:hover {
    background-color: #f8f9fa;
    border-color: rgb(76, 175, 80);
  }
}
@media (max-width: 575px) {
  .back-btn {
    width: 40px;
    height: 40px;
  }
}
.back-btn i {
  font-size: 20px;
}
@media (max-width: 575px) {
  .back-btn i {
    font-size: 18px;
  }
}

.page-title {
  font-size: clamp(18px, 4vw, 20px);
  font-weight: bold;
  margin: 0;
  text-align: center;
  flex: 1;
}
@media (max-width: 575px) {
  .page-title {
    order: 3;
    width: 100%;
    margin-top: 5px;
  }
}

.nav-right {
  flex-shrink: 0;
}
.nav-right a {
  text-decoration: none;
  color: #333;
  font-weight: normal;
  font-size: clamp(14px, 2.5vw, 16px);
}

.card-container,
.apr-card-container {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin: 20px;
  align-items: stretch;
}
@media (max-width: 575px) {
  .card-container,
  .apr-card-container {
    flex-direction: column;
    gap: 15px;
    margin: 15px 10px;
  }
}
@media (max-width: 319px) {
  .card-container,
  .apr-card-container {
    margin: 10px 5px;
  }
}

.solicitud-card,
.apr-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: box-shadow 0.2s ease;
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  min-height: 400px;
}
@media (hover: hover) and (pointer: fine) {
  .solicitud-card:hover,
  .apr-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
}
@media (max-width: 575px) {
  .solicitud-card,
  .apr-card {
    padding: 15px;
    margin-bottom: 0;
    flex: none;
    min-width: auto;
    min-height: auto;
  }
}
@media (max-width: 319px) {
  .solicitud-card,
  .apr-card {
    padding: 12px;
  }
}

.card-title,
.apr-card-title {
  font-size: clamp(14px, 3vw, 16px);
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
}
@media (max-width: 575px) {
  .card-title,
  .apr-card-title {
    margin-bottom: 15px;
  }
}

.info-row,
.apr-info-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  line-height: 1.4;
  gap: 10px;
}
@media (max-width: 575px) {
  .info-row,
  .apr-info-row {
    flex-direction: column;
    gap: 4px;
  }
}

.info-label,
.apr-info-label {
  flex: 1;
  color: #666;
  font-size: clamp(12px, 2.5vw, 14px);
  font-weight: 500;
  min-width: 120px;
}
@media (max-width: 575px) {
  .info-label,
  .apr-info-label {
    margin-bottom: 2px;
    min-width: auto;
  }
}

.info-value,
.apr-info-value {
  flex: 1;
  text-align: right;
  font-weight: bold;
  font-size: clamp(12px, 2.5vw, 14px);
  color: #333;
  word-break: break-word;
}
@media (max-width: 575px) {
  .info-value,
  .apr-info-value {
    text-align: left;
  }
}

.update-container {
  display: flex;
  flex-direction: column;
  position: relative;
  background-color: #fff;
}
.update-container:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
  background-color: #eee;
  z-index: 1;
}
@media (max-width: 575px) {
  .update-container:after {
    display: none;
  }
}

.update-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  z-index: 2;
  background-color: #fff;
  gap: 20px;
}
@media (max-width: 575px) {
  .update-columns {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.column-header {
  font-weight: bold;
  color: #333;
  font-size: clamp(12px, 2.5vw, 14px);
  padding: 10px;
}
.column-header:last-child {
  text-align: right;
}
@media (max-width: 575px) {
  .column-header:last-child {
    text-align: left;
  }
}

.update-content {
  position: relative;
  background-color: #fff;
}

.update-row,
.apr-update-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 0px 10px 0px 10px;
}
@media (max-width: 575px) {
  .update-row,
  .apr-update-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.update-left,
.apr-update-left {
  position: relative;
  padding: 10px;
}
@media (max-width: 575px) {
  .update-left,
  .apr-update-left {
    padding: 5px 0;
  }
}

.update-right,
.apr-update-right {
  position: relative;
  padding: 10px;
}
@media (max-width: 575px) {
  .update-right,
  .apr-update-right {
    padding: 5px 0;
  }
}

.update-label,
.apr-update-label {
  color: #666;
  font-size: clamp(12px, 2.5vw, 14px);
  margin-bottom: 5px;
  font-weight: 500;
}

.update-value,
.apr-update-value {
  text-align: left;
  font-weight: bold;
  font-size: clamp(12px, 2.5vw, 14px);
  color: #333;
  word-break: break-word;
}

.autorizadores-section,
.apr-autorizadores-section {
  margin: 20px;
  overflow-x: auto;
}
@media (max-width: 575px) {
  .autorizadores-section,
  .apr-autorizadores-section {
    margin: 15px 10px;
  }
}
@media (max-width: 319px) {
  .autorizadores-section,
  .apr-autorizadores-section {
    margin: 10px 5px;
  }
}

.section-title,
.apr-autorizadores-title {
  font-size: clamp(14px, 3vw, 16px);
  font-weight: bold;
  margin-bottom: 15px;
  color: #333;
}

.autorizadores-table,
.apr-table-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  min-width: 100%;
}
@media (max-width: 575px) {
  .autorizadores-table,
  .apr-table-container {
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
  }
}

.table-header {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  background-color: #f0f0f0;
}
@media (max-width: 575px) {
  .table-header {
    display: none;
  }
}

.header-cell,
.apr-th {
  padding: 12px 15px;
  font-size: clamp(12px, 2.5vw, 14px);
  color: #333;
  font-weight: 600;
  text-align: left;
}
@media (max-width: 575px) {
  .header-cell,
  .apr-th {
    padding: 10px;
  }
}

.table-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  border-top: 1px solid #f0f0f0;
}
@media (max-width: 575px) {
  .table-row {
    display: block;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    border-top: none;
  }
}

.table-cell,
.apr-td {
  padding: 12px 15px;
  font-size: clamp(12px, 2.5vw, 14px);
  color: #333;
  text-align: left;
  border-top: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  min-height: 44px;
}
@media (max-width: 575px) {
  .table-cell,
  .apr-td {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    border-top: none;
    padding: 12px 15px;
  }
  .table-cell:before,
  .apr-td:before {
    content: attr(data-label);
    font-weight: bold;
    margin-right: 15px;
    color: #666;
  }
  .table-cell:last-child,
  .apr-td:last-child {
    border-bottom: none;
  }
}

.sol-container {
  padding: 20px;
  max-width: 100%;
  margin: 0 auto;
}
@media (max-width: 575px) {
  .sol-container {
    padding: 15px 10px;
  }
}
@media (max-width: 319px) {
  .sol-container {
    padding: 10px 5px;
  }
}

.sol-title {
  font-size: clamp(20px, 5vw, 24px);
  font-weight: bold;
  margin-bottom: 20px;
}

.sol-table-container {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
@media (max-width: 575px) {
  .sol-table-container {
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
  }
}

.sol-table {
  table-layout: auto;
  width: 100%;
  min-width: 600px;
}
@media (max-width: 575px) {
  .sol-table {
    min-width: 100%;
  }
}

.sol-th {
  background-color: rgb(232, 232, 232);
  padding: 12px 15px;
  text-align: center;
  font-weight: bold;
  font-size: clamp(12px, 2.5vw, 14px);
}
@media (max-width: 575px) {
  .sol-th {
    padding: 10px 8px;
  }
}

.sol-td {
  padding: 12px 15px;
  border-top: none;
  text-align: center;
  font-size: clamp(12px, 2.5vw, 14px);
  min-height: 44px;
}
@media (max-width: 575px) {
  .sol-td {
    padding: 10px 8px;
  }
}

.sol-table .view-btn, .sol-table .delete-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 8px;
  border-radius: 4px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sol-table .view-btn {
  color: #1E88E5;
}
@media (hover: hover) and (pointer: fine) {
  .sol-table .view-btn:hover {
    background-color: rgba(30, 136, 229, 0.1);
  }
}
.sol-table .delete-btn {
  color: #E53935;
}
@media (hover: hover) and (pointer: fine) {
  .sol-table .delete-btn:hover {
    background-color: rgba(229, 57, 53, 0.1);
  }
}

.sol-search-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 20px;
  margin-right: 20px;
}
@media (max-width: 575px) {
  .sol-search-container {
    justify-content: center;
    margin-right: 0;
    width: 100%;
    padding: 0 10px;
  }
}
.sol-search-container .search-input {
  width: min(280px, 100%);
  height: 44px;
  padding: 10px 40px 10px 15px;
  border-radius: 50px;
  border: 1px solid #ddd;
  outline: none;
  font-size: 16px;
  transition: border-color 0.2s ease;
}
.sol-search-container .search-input:focus {
  border-color: rgb(76, 175, 80);
}
.sol-search-container .search-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  margin-left: -40px;
  width: 40px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: color 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  .sol-search-container .search-btn:hover {
    color: rgb(76, 175, 80);
  }
}

.actions-container {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin: 17px 0;
  flex-wrap: wrap;
}
@media (max-width: 575px) {
  .actions-container {
    justify-content: center;
    gap: 8px;
  }
}

.btn-cancelar, .btn-guardar {
  padding: 10px 20px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 500;
  font-size: clamp(12px, 2.5vw, 14px);
  transition: all 0.2s ease;
  min-width: 100px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 575px) {
  .btn-cancelar, .btn-guardar {
    min-width: 80px;
    padding: 8px 16px;
  }
}

.btn-cancelar {
  border: 1px solid #21ad64;
  background-color: white;
  color: #21ad64;
}
@media (hover: hover) and (pointer: fine) {
  .btn-cancelar:hover:not([disabled]) {
    background-color: rgba(33, 173, 100, 0.1);
  }
}

.btn-guardar {
  border: none;
  background-color: #21ad64;
  color: white;
  text-transform: uppercase;
}
@media (hover: hover) and (pointer: fine) {
  .btn-guardar:hover:not([disabled]) {
    background-color: #1e9b5a;
  }
}

.btn-guardar[disabled], .btn-cancelar[disabled] {
  background-color: #cccccc;
  cursor: not-allowed;
  opacity: 0.7;
  border-color: #cccccc;
}

.observaciones-textarea {
  width: 100%;
  min-height: 100px;
  padding: 12px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background-color: #f5f5f5;
  resize: vertical;
  font-family: inherit;
  font-size: clamp(12px, 2.5vw, 14px);
  line-height: 1.4;
}
.observaciones-textarea:focus {
  outline: none;
  border-color: rgb(76, 175, 80);
  box-shadow: 0 0 0 2px rgba(0, 166, 81, 0.2);
}
@media (max-width: 575px) {
  .observaciones-textarea {
    min-height: 80px;
    padding: 10px;
  }
}

.apr-au-detalle-alta {
  flex: 2;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  display: flex;
  flex-direction: column;
  min-height: 400px;
}
@media (max-width: 575px) {
  .apr-au-detalle-alta {
    padding: 15px;
    min-height: auto;
  }
}
@media (max-width: 319px) {
  .apr-au-detalle-alta {
    padding: 12px;
  }
}

.apr-au-section-title {
  font-size: clamp(14px, 3vw, 16px);
  font-weight: 500;
  margin-bottom: 20px;
  color: #333333;
}

.apr-au-product-details {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
  flex: 1;
}
@media (max-width: 575px) {
  .apr-au-product-details {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.apr-au-product-column {
  position: relative;
  padding: 0 10px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 575px) {
  .apr-au-product-column {
    padding: 0;
  }
}
.apr-au-product-column:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: #e0e0e0;
}
@media (max-width: 575px) {
  .apr-au-product-column:not(:last-child)::after {
    display: none;
  }
}

.apr-au-product-title {
  font-size: clamp(12px, 2.5vw, 14px);
  font-weight: 500;
  margin-bottom: 15px;
  color: #333333;
}

.apr-au-product-info {
  margin-bottom: 15px;
  flex: 1;
}

.apr-au-info-label {
  color: #666666;
  font-size: clamp(10px, 1.8vw, 12px);
  margin-bottom: 5px;
  display: block;
  font-weight: 500;
  line-height: 1.3;
}

.apr-au-info-value {
  font-size: clamp(11px, 2vw, 13px);
  font-weight: 500;
  display: block;
  word-break: break-word;
  margin-bottom: 12px;
  line-height: 1.4;
}

.detalle-activacion-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  height: 100%;
}
@media (max-width: 575px) {
  .detalle-activacion-content {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.detalle-col-1, .detalle-col-2, .detalle-col-3 {
  display: flex;
  flex-direction: column;
  padding: 0 10px;
  position: relative;
}
.detalle-col-1:not(:last-child)::after, .detalle-col-2:not(:last-child)::after, .detalle-col-3:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: #e0e0e0;
}
@media (max-width: 575px) {
  .detalle-col-1:not(:last-child)::after, .detalle-col-2:not(:last-child)::after, .detalle-col-3:not(:last-child)::after {
    display: none;
  }
}
@media (max-width: 575px) {
  .detalle-col-1, .detalle-col-2, .detalle-col-3 {
    padding: 0;
  }
}

.detalle-item {
  margin-bottom: 15px;
}
.detalle-item .detalle-label {
  color: #666666;
  font-size: clamp(10px, 1.8vw, 12px);
  margin-bottom: 4px;
  display: block;
  font-weight: 500;
  line-height: 1.2;
}
.detalle-item .detalle-value {
  font-size: clamp(11px, 2vw, 13px);
  font-weight: 500;
  display: block;
  word-break: break-word;
  color: #333333;
  line-height: 1.3;
}

.apr-au-binstatus-validaciones-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}
@media (max-width: 575px) {
  .apr-au-binstatus-validaciones-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

@media (max-width: 575px) {
  .apr-au-binstatus-container, .apr-au-validaciones-container {
    width: 100%;
  }
}

.apr-au-section-subtitle {
  font-size: clamp(12px, 2.5vw, 14px);
  font-weight: 500;
  margin-bottom: 15px;
  color: #333333;
}

.apr-au-binstatus-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media (max-width: 575px) {
  .apr-au-binstatus-columns {
    grid-template-columns: 1fr;
  }
}

.apr-au-checkbox-item {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  position: relative;
  cursor: default;
  min-height: 32px;
  gap: 8px;
}

.apr-au-checkbox-item input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: default;
  height: 24px;
  width: 24px;
  z-index: -1;
  pointer-events: none;
}

.apr-au-checkbox-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: #f2f2f2;
  border-radius: 4px;
  flex-shrink: 0;
  pointer-events: none;
}
.apr-au-checkbox-visual::before {
  content: "-";
  font-size: 18px;
  font-weight: bold;
  color: #666666;
}

.apr-au-checkbox-item input[type=checkbox]:checked + .apr-au-checkbox-visual::before {
  content: "✓";
  color: #666666;
}

.apr-au-checkbox-item label {
  font-size: clamp(11px, 2vw, 13px);
  color: #333333;
  cursor: default;
  pointer-events: none;
  line-height: 1.3;
}

.mobile-only {
  display: none;
}
@media (max-width: 575px) {
  .mobile-only {
    display: block;
  }
}

.desktop-only {
  display: block;
}
@media (max-width: 575px) {
  .desktop-only {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  .update-right,
  .apr-update-right {
    background-color: rgba(23, 165, 77, 0.25) !important;
    border-radius: 8px !important;
    padding: 10px !important;
  }
  .column-header:last-child {
    background-color: rgba(23, 165, 77, 0.25) !important;
    border-radius: 8px !important;
    margin-bottom: 10px !important;
  }
}
@media screen and (max-width: 768px) {
  .update-right,
  .apr-update-right {
    background-color: rgba(23, 165, 77, 0.25) !important;
    border-radius: 8px !important;
    padding: 10px !important;
  }
  .column-header:last-child {
    background-color: rgba(23, 165, 77, 0.25) !important;
    border-radius: 8px !important;
    margin-bottom: 10px !important;
  }
}
@media screen and (max-width: 992px) {
  .update-columns {
    grid-template-columns: 1fr !important;
  }
  .update-columns .update-right,
  .update-columns .apr-update-right {
    background-color: rgba(23, 165, 77, 0.25) !important;
    border-radius: 8px !important;
    padding: 10px !important;
  }
  .update-columns .column-header:last-child {
    background-color: rgba(23, 165, 77, 0.25) !important;
    border-radius: 8px !important;
    margin-bottom: 10px !important;
  }
}
