/* =========================
   Layout: Tramite Panel
   ========================= */
.gsl-tramite-panel-layout {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  border-radius: 12px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 24px;
  max-width: 85%;
  margin: auto;
}

/* --- Sidebar --- */
.gsl-tramite-sidebar {

  min-width: 320px;
  max-width: 380px;
  background: #f8f9fb;
  border-radius: 10px;
  padding: 20px;
  border: 1px solid #e3e7eb;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  font-size: 1rem;
}

/* sidebar heading */
.gsl-tramite-sidebar h3 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #0073aa;
  border-left: 4px solid #0073aa;
  padding-left: 10px;
}

/* =========================
   Basic fields & items
   ========================= */

/* Trámite field container  */
.gsl-tramite-field {
  margin-bottom: 10px;
  padding-bottom: 5px;
  font-size: 0.8rem;
  color: #1a1a1a;
  background: #fff;
  padding: 4px 5px;
  border-radius: 5px;
  border: 1px solid #c1c2c4;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* strong label inside field */
.gsl-tramite-field strong {
  display: block;
  color: #222;
  margin-bottom: 4px;
}

/* small id lines */
.gsl-tramite-cliente-id,
.gsl-tramite-producto-id,
.gsl-tramite-certificadora-id,
.gsl-tramite-laboratorio-id {
  color: #777;
  font-size: 0.85em;
}

/* list inside field */
.gsl-tramite-field ul {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
}
.gsl-tramite-field li {
  margin-bottom: 6px;
  padding-left: 12px;
  position: relative;
}
.gsl-tramite-field li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #0073aa;
  font-weight: bold;
}

/* =========================
   Hitos / Hito components
   ========================= */

/* Hitos container */
.gsl-tramite-hitos {
  margin-top: 20px;
}

.gsl-tramite-hitos h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #444;
  margin-bottom: 10px;
}

/* list reset for hitos */
.gsl-tramite-hitos ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Hito link (merged) */
.gsl-hito-link {
  display: block;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.8rem;
  padding: 2px 10px;
  background: #eef5fb;
  border: 1px solid #d0e3f0;
  border-radius: 8px;
  text-decoration: none;
  color: #005f8d;
  flex: 1;
  transition: all 0.2s ease;
}

/* Hover for hito link — merged both hover behaviours */
.gsl-hito-link:hover {
  background: #80b3cc;
  color: #fff;
  text-decoration: underline;
  transform: translateX(3px);
}

.gsl-hito-link.selected {
  background-color: #005f8d;
}
a.gsl-hito-link.selected {
  color: #ffffff;
}

/* small id badge beside link */
.gsl-hito-id {
  color: #999;
  font-size: 0.85em;
  margin-left: 4px;
}

/* Hito list item */
.gsl-hito-item {
  display: flex;
  align-items: center;
  margin-bottom: 2px;
  border-bottom: 1px solid #f0f2f7;
  cursor: grab;
  transition: background 0.18s;
  font-size: 15px;
}
.gsl-hito-item:last-child {
  border-bottom: none;
}
.gsl-hito-item:hover {
  background: #e7f7ff;
}

/* Hito icon */
.gsl-hito-icon {
  font-size: 18px;
  margin-right: 8px;
}

/* remove control for hitos */
.gsl-remove-hito {
  margin-left: auto;
  color: #a00;
  font-size: 18px;
  cursor: pointer;
  padding: 0 6px;
}

/* Flow-specific hitos style */
.gsl-hitos-flow .gsl-hito-item {
  background: #f0f8ff;
}

/* placeholder used during drag/drop */
.gsl-hito-placeholder,
.gsl-field-placeholder {
  background: #dbeafe !important;
  height: 38px;
  border-radius: 4px;
}

/* Hito status indicators */
.gsl-hito-item.estado-pendiente .gsl-hito-estado, .gsl-dashboard-hito-item.estado-pendiente {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0px;
  border: 1px solid #999;
  background-color: #ccc;
}
.gsl-hito-item.estado-iniciado .gsl-hito-estado, .gsl-dashboard-hito-item.estado-iniciado {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0px;
  border: 1px solid #999;
  background-color: #ffe600;
}
.gsl-hito-item.estado-con-problemas .gsl-hito-estado, .gsl-dashboard-hito-item.estado-con-problemas {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0px;
  border: 1px solid #999;
  background-color: red;
}
.gsl-hito-item.estado-finalizado .gsl-hito-estado, .gsl-dashboard-hito-item.estado-finalizado {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0px;
  border: 1px solid #999;
  background-color: #48dd12;
}


/* =========================
   Hito builder / Metabox (shared)
   ========================= */
/* merged selector to avoid duplication while preserving both usages */
.gsl-hito-builder-ui,
.gsl-metabox-ui {
  background: #f8fafc;
  border-radius: 8px;
  padding: 18px 16px 12px 16px;
  border: 1px solid #e3e7ee;
}

/* shared header for builder / metabox */
.gsl-hito-builder-header,
.gsl-metabox-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

/* list for fields inside builder */
.gsl-hito-fields-list {
  min-height: 60px;
  list-style: none;
  padding: 0;
  border: 1px solid #e3e7ee;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
  margin-bottom: 12px;
}

/* field item inside builder */
.gsl-field-item {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  border-bottom: 1px solid #f0f2f7;
  cursor: grab;
  transition: background 0.18s;
  font-size: 15px;
  border-radius: 5px;
}
.gsl-field-item:last-child {
  border-bottom: none;
}
.gsl-field-item:hover {
  background: #e7f7ff;
}

.gsl-field-handle {
  font-size: 18px;
  margin-right: 10px;
  color: #888;
  cursor: grab;
}
.gsl-field-summary {
  flex: 1;
  font-size: 15px;
  color: #333;
}
.gsl-field-actions {
  white-space: nowrap;
}
.gsl-field-actions .button {
  margin-left: 6px;
}
.gsl-field-actions .gsl-remove-field {
  color: #a00;
  font-size: 18px;
  background: none;
  border: none;
  cursor: pointer;
}
.gsl-field-editor {
  border: 1px solid #e3e7ee;
  background: #fff;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 12px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}
#gsl-clear-fields {
  margin-left: 16px;
}

/* columns used in metabox/builder */
.gsl-hitos-columns {
  display: flex;
  gap: 32px;
}
.gsl-hitos-list-col,
.gsl-hitos-flow-col {
  flex: 1;
}
.gsl-hitos-list,
.gsl-hitos-flow {
  min-height: 120px;
  list-style: none;
  padding: 0;
  border: 1px solid #e3e7ee;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}
.gsl-hitos-list-col h4,
.gsl-hitos-flow-col h4 {
  margin-top: 0;
  font-weight: 600;
}

/* clear flow control */
#gsl-clear-flow {
  margin-left: 16px;
}

/* =========================
   Panel Usuario (user panel)
   ========================= */
.gsl-panel-usuario {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 1%;
  max-width: 95%;
  margin: 40px auto;
  font-family: "Inter", "Segoe UI", Roboto, sans-serif;
}

.gsl-panel-usuario h3 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #0073aa;
  border-left: 4px solid #0073aa;
  padding-left: 10px;
}

/* tramites sheet (table) */
.gsl-tramites-sheet {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  table-layout: fixed;
}

.gsl-tramites-sheet thead th {
  text-align: left;
  background: #f8f9fb;
  color: #444;
  font-weight: 600;
  padding: 12px 5px;
  border-bottom: 2px solid #e0e3e7;
  font-size: 0.85rem;
}

/* Column width constraints to prevent resizing when filters appear */
.gsl-tramites-sheet th:nth-child(1),
.gsl-tramites-sheet td:nth-child(1) {
  width: 4%;
}
.gsl-tramites-sheet th:nth-child(2),
.gsl-tramites-sheet td:nth-child(2) {
  width: 10%;
}
.gsl-tramites-sheet th:nth-child(3),
.gsl-tramites-sheet td:nth-child(3) {
  width: 10%;
}
.gsl-tramites-sheet th:nth-child(4),
.gsl-tramites-sheet td:nth-child(4) {
  width: 8%;
}
.gsl-tramites-sheet th:nth-child(5),
.gsl-tramites-sheet td:nth-child(5) {
  width: 6%;
}
.gsl-tramites-sheet th:nth-child(6),
.gsl-tramites-sheet td:nth-child(6) {
  width: 5%;
}
.gsl-tramites-sheet th:nth-child(7),
.gsl-tramites-sheet td:nth-child(7) {
  width: 12%;
}
.gsl-tramites-sheet th:nth-child(8),
.gsl-tramites-sheet td:nth-child(8) {
  width: 17%;
}
.gsl-tramites-sheet th:nth-child(9),
.gsl-tramites-sheet td:nth-child(9) {
  width: 16%;
}
.gsl-tramites-sheet th:nth-child(10),
.gsl-tramites-sheet td:nth-child(10) {
  width: 2%;
}
.gsl-tramites-sheet th:nth-child(11),
.gsl-tramites-sheet td:nth-child(11) {
  width: 4%;
}

.gsl-tramites-sheet tbody td {
  padding: 8px 12px;
  border-bottom: 1px solid #e8eaed;
  color: #333;
  font-size: 0.75rem;
}

.gsl-tramites-sheet tbody tr:hover {
  background-color: #f3f7ff;
  transition: background 0.2s ease;
}

/* arrow control */
.gsl-tramite-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0073aa;
  color: #fff;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.25s ease;
}
.gsl-tramite-arrow:hover {
  color: #fff;
  transform: translateX(3px);
}

/* =========================
   Main panel (merged)
   ========================= */
.gsl-tramite-main {
  flex: 1;
  min-height: 320px;
  position: sticky;
  top: 50px;
  background: #fdfdfd;
  border: 1px solid #e3e7eb;
  border-radius: 10px;
  padding: 20px 10%;
  font-size: 0.95rem;
  color: #444;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: center;
}

/* =========================
   Form fields - rows & labels
   ========================= */

/* Field row wrapper (merged) */
.gsl-hito-field-row {
  display: flex;
  flex-direction: column;
  text-align: left;
  margin-bottom: 18px;
}

/* label inside field rows (merged) */
.gsl-hito-field-row label {
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
  font-size: 0.9rem;
}

/* inputs (text, email, number, date, phone, file, select, textarea) */
.gsl-hito-field-row input[type="text"],
.gsl-hito-field-row input[type="email"],
.gsl-hito-field-row input[type="number"],
.gsl-hito-field-row input[type="date"],
.gsl-hito-field-row input[type="phone"],
.gsl-hito-field-row input[type="file"],
.gsl-hito-field-row input[type="datetime-local"],
.gsl-hito-field-row select,
.gsl-hito-field-row textarea {
  background: #f9fafb;
  border: 1px solid #d4d7db;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, background 0.2s ease;
  color: #333;
}

/* Focus states (merged selectors included) */
.gsl-hito-field-row input[type="text"]:focus,
.gsl-hito-field-row input[type="file"]:focus,
.gsl-tramite-edit-row select:focus,
.gsl-tramite-edit-row input[type="text"]:focus,
.gsl-tramite-edit-row .gsl-tramite-producto-search:focus {
  outline: none;
  border-color: #0073aa;
  box-shadow: 0 0 0 4px rgba(0, 115, 170, 0.08);
  background: #fff;
}

/* custom file input */
.gsl-hito-field-row input[type="file"] {
  padding: 8px;
  cursor: pointer;
}
.gsl-hito-field-row input[type="file"]::-webkit-file-upload-button {
  background: #0073aa;
  color: #fff;
  border: none;
  padding: 6px 14px;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease;
}
.gsl-hito-field-row input[type="file"]::-webkit-file-upload-button:hover {
  background: #005f8d;
}

.gsl-file-selected-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid #e2e6ea;
  border-radius: 6px;
  background: #fff;
}

.gsl-selected-file-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border-bottom: 1px solid #f0f2f4;
}

.gsl-hito-existing-file-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border-bottom: 1px solid #f0f2f4;
}

.gsl-selected-file-item:last-child {
  border-bottom: none;
}

.gsl-hito-existing-file-item:last-child {
  border-bottom: none;
}

.gsl-selected-file-icon {
  font-size: 16px;
  color: #6c757d;
}

.gsl-selected-file-name {
  flex: 1;
  font-size: 12px;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gsl-hito-existing-file-list .gsl-selected-file-name {
  text-decoration: none;
}

.gsl-hito-existing-file-item .gsl-remove-existing-file,
.gsl-selected-file-item .gsl-remove-selected-file {
  border: 0;
  background: transparent;
  padding: 0;
  line-height: 1;
}

.gsl-remove-existing-file {
  color: #b42318;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
}

.gsl-remove-existing-file:hover {
  color: #8f1d13;
}

.gsl-remove-selected-file {
  color: #b42318;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
}

.gsl-remove-selected-file:hover {
  color: #8f1d13;
}

.gsl-selected-file-empty {
  padding: 6px 8px;
  font-size: 12px;
  color: #6c757d;
}

/* textarea specifics */
.gsl-hito-field-row textarea {
  resize: vertical;
  min-height: 100px;
}

/* checkbox & radio */
.gsl-hito-field-row input[type="checkbox"],
.gsl-hito-field-row input[type="radio"] {
  width: auto;
  accent-color: #0073aa;
  transform: scale(1.2);
  cursor: pointer;
}

/* =========================
   Edit / control buttons & rows
   ========================= */

/* Edit button */
.gsl-tramite-editar-btn {
  background: #0073aa;
  color: #ffffff;
  border: 1.5px solid #0073aa;
  padding: 8px 12px;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.16s ease;
  display: inline-flex;
  align-items: center;
}
.gsl-tramite-editar-btn:hover {
  background: #fff;
  color: #0073aa;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 115, 170, 0.12);
}
.gsl-tramite-editar-btn:active {
  transform: translateY(0);
  box-shadow: none;
}

/* Row wrapper for edit */
.gsl-tramite-edit-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 10px;
}

/* Labels inside edit rows */
.gsl-tramite-edit-row > label,
.gsl-tramite-edit-row label {
  font-weight: 600;
  font-size: 0.95rem;
  color: #222;
}

/* Selects (merged selectors and styles) */
.gsl-tramite-edit-row select,
.gsl-tramite-tramite-select,
.gsl-tramite-select-cliente,
.gsl-tramite-select-certificadora,
.gsl-tramite-select-laboratorio {
  appearance: none;
  -webkit-appearance: none;
  background: #fafbfd;
  border: 1px solid #d6d9dd;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 0.95rem;
  width: 100%;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
  cursor: pointer;
}

/* chevron background for selects */
.gsl-tramite-edit-row select {
  background-image: linear-gradient(45deg, transparent 50%, #7b8a93 50%),
    linear-gradient(135deg, #7b8a93 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(1em + 2px),
    calc(100% - 13px) calc(1em + 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 38px;
}

/* Product search input */
.gsl-tramite-producto-search {
  border: 1px solid #d6d9dd;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 0.95rem;
  background: #fff;
  transition: box-shadow 0.15s ease;
}

/* Product list container */
.gsl-tramite-productos-list, .gsl-tramite-input-certificado {
  border-radius: 8px;
  border: 1px solid #e2e5e8;
  background: #fbfcfd;
  padding: 6px;
  max-height: 220px;
  overflow-y: auto;
  margin-top: 6px;
}

/* Product list item (merged & ordered) */
.gsl-tramite-producto-list-item {
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 5px;
  border-radius: 8px;
  font-size: 0.9rem;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.6),
    rgba(250, 252, 253, 0.6)
  );
  border: 1px solid transparent;
  transition: background 0.15s ease, transform 0.12s ease,
    border-color 0.12s ease;
}
.gsl-tramite-producto-list-item:hover {
  background: #eef7ff;
  transform: translateX(4px);
  border-color: #d7eefc;
}

/* Product ID style */
.gsl-tramite-producto-id {
  color: #7d8a93;
  font-size: 0.85rem;
  margin-left: 8px;
}

/* Add button (+) */
.gsl-agregar-producto {
  appearance: none;
  border: none;
  background: #0073aa;
  color: #fff;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.12s ease;
}
.gsl-agregar-producto:hover {
  background: #005f8d;
  transform: translateY(-2px);
}

/* Selected products area */
.gsl-tramite-productos-seleccionados {
  text-align: left;
  border-radius: 8px;
  border: 1px solid #e3e7eb;
  padding: 10px !important;
  background: #fff;
  max-height: 220px;
  overflow-y: auto;
  margin-top: 8px;
}

/* Individual selected product item */
.gsl-tramite-producto-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 5px;
  background: #fbfbfc;
  border-radius: 8px;
  border: 1px solid #f0f2f4;
  font-size: 0.9rem;
}
.gsl-tramite-producto-item .gsl-tramite-producto-id {
  color: #888;
  font-size: 0.85rem;
  margin-left: 8px;
}

/* Remove button (-) */
.gsl-remove-producto {
  border: none;
  background: #ff5757;
  color: #fff;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 800;
  transition: background 0.12s ease, transform 0.12s ease;
}
.gsl-remove-producto:hover {
  background: #cc4545;
  transform: translateY(-2px);
}

/* Save buttons (two similar save styles preserved) */
.gsl-hito-fields-save,
.gsl-tramite-edit-save {
  align-self: flex-end;
  background: #0073aa;
  border: 1.5px solid #0073aa;
  color: #fff;
  border-radius: 10px;
  padding: 8px 12px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: box-shadow 0.12s ease, transform 0.12s ease, background 0.12s ease;
  margin-top: 6px;
}
.gsl-hito-fields-save:hover,
.gsl-tramite-edit-save:hover {
  background: #fff;
  color: #0073aa;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 115, 170, 0.12);
}
.gsl-hito-fields-save:active {
  transform: translateY(0);
  box-shadow: none;
}

/* Loading / success / error messages */
.gsl-hito-loading,
.gsl-hito-success,
.gsl-hito-error {
  font-size: 1.1em;
  margin-bottom: 18px;
}
.gsl-hito-success {
  color: #2e7d32;
}
.gsl-save-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid #b7e1bf;
  border-radius: 6px;
  background: #edf8f0;
}
.gsl-save-indicator-check {
  font-weight: 700;
  font-size: 1em;
  line-height: 1;
}
.gsl-hito-error {
  color: #c62828;
}

/* Tiny helpers */
.gsl-tramite-producto-list-item button,
.gsl-tramite-producto-item button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* =========================
   Misc: placeholders, helpers, scrollbars
   ========================= */

/* field placeholder (already merged above, repeated here to be explicit) */
.gsl-field-placeholder {
  background: #dbeafe !important;
  height: 38px;
  border-radius: 4px;
}

/* scrollbar (WebKit) */
.gsl-tramite-productos-list::-webkit-scrollbar,
.gsl-tramite-productos-seleccionados::-webkit-scrollbar {
  width: 8px;
}
.gsl-tramite-productos-list::-webkit-scrollbar-thumb,
.gsl-tramite-productos-seleccionados::-webkit-scrollbar-thumb {
  background: #d6d9dd;
  border-radius: 8px;
}

.gsl-filter-btn {
    background: #f1f1f1;
    border: 1px solid #ccc;
    padding: 8px 16px;
    margin-left: 5px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
}
.gsl-filter-btn.active,
.gsl-filter-btn:hover {
    background: #0073aa;
    color: white;
    border-color: #0073aa;
}

/* Export button styling */
.gsl-export-btn {
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(40, 167, 69, 0.2);
}

.gsl-export-btn:hover {
    background: #218838 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(40, 167, 69, 0.3);
}

#gsl-nuevo-tramite-btn {
  box-shadow: 0 2px 4px rgba(31, 111, 235, 0.25);
}

#gsl-nuevo-tramite-btn:hover {
  background: #1a5fc9 !important;
  box-shadow: 0 4px 8px rgba(26, 95, 201, 0.35);
}

#gsl-export-facturacion-btn:hover {
  background: #cc6400 !important;
  box-shadow: 0 4px 8px rgba(204, 100, 0, 0.35);
}

.gsl-export-btn:disabled {
    background: #6c757d !important;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.gsl-tramite-filters {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* =========================
   Column Filtering Styles
   ========================= */
.gsl-filter-icon {
    cursor: pointer;
    margin-left: 5px;
    opacity: 0.6;
    font-size: 12px;
}
.gsl-filter-icon:hover {
    opacity: 1;
}
.gsl-column-filter {
    width: 100%;
    max-width: 120px;
    padding: 4px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 12px;
}
select.gsl-column-filter {
    max-width: 150px;
}
.gsl-filter-row td {
    padding: 5px !important;
}
.gsl-clear-filters {
    background: #f1f1f1;
    border: 1px solid #ccc;
    padding: 4px 8px;
    cursor: pointer;
    border-radius: 3px;
    font-size: 12px;
}
.gsl-clear-filters:hover {
    background: #e1e1e1;
}
.gsl-clear-row {
    display: none;
}

    