/* guardian.css - Foglio di stile Guardian */
/* Basato su portal.css di Gear */

:root {
  --primary-color: #2c3e50;
  --secondary-color: #3498db;
  --accent-color: #e74c3c;
  --light-bg: #f8f9fa;
  --dark-text: #343a40;
  --light-text: #f8f9fa;
  --dark-bg: #121212;
  --dark-card-bg: #1e1e1e;
  --dark-border: #333;
  --dark-hover: rgba(255, 255, 255, 0.05);
  --guardian-color: #00d4ff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--light-bg);
  color: var(--dark-text);
  transition:
    background-color 0.3s,
    color 0.3s;
}

/* =====================
   LOGIN / SETUP PAGE
   ===================== */
.guardian-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  padding: 40px 20px;
}

.guardian-wrapper.centered {
  justify-content: center;
}

.guardian-logo {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--guardian-color);
  letter-spacing: 4px;
  margin-bottom: 8px;
  text-align: center;
}

.guardian-subtitle {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
}

.guardian-system {
  font-size: 0.75rem;
  color: var(--guardian-color);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 40px;
  text-align: center;
  opacity: 0.8;
}

.guardian-card {
  background: #16213e;
  border: 1px solid #0f3460;
  border-radius: 12px;
  padding: 30px;
  width: 100%;
  max-width: 600px;
  margin-bottom: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.guardian-card h2 {
  font-size: 1rem;
  color: var(--guardian-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid #0f3460;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.form-group input[type="text"],
.form-group input[type="password"],
.form-group input[type="number"] {
  width: 100%;
  padding: 10px 14px;
  background: #0f3460;
  border: 1px solid #1a4a7a;
  border-radius: 6px;
  color: #eee;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus {
  border-color: var(--guardian-color);
}

.row {
  display: flex;
  gap: 12px;
}

.row .form-group {
  flex: 1;
}
.row .form-group.small {
  flex: 0 0 120px;
}

.btn {
  padding: 10px 24px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.2s;
  width: 100%;
  margin-top: 8px;
}

.btn-test {
  background: #0f3460;
  color: var(--guardian-color);
  border: 1px solid var(--guardian-color);
}

.btn-test:hover {
  background: var(--guardian-color);
  color: #1a1a2e;
}

.btn-primary {
  background: var(--guardian-color);
  color: #1a1a2e;
  margin-top: 12px;
}

.btn-primary:hover {
  background: #00b8d9;
}

.btn-danger {
  background: transparent;
  color: #ff3c3c;
  border: 1px solid #ff3c3c;
  margin-top: 16px;
}

.btn-danger:hover {
  background: #ff3c3c;
  color: #fff;
}

.alert {
  padding: 12px 16px;
  border-radius: 6px;
  margin-top: 12px;
  font-size: 0.9rem;
  font-weight: 600;
}

.alert-ok {
  background: rgba(0, 200, 100, 0.15);
  border: 1px solid #00c864;
  color: #00c864;
}

.alert-ko {
  background: rgba(255, 60, 60, 0.15);
  border: 1px solid #ff3c3c;
  color: #ff3c3c;
}

.alert-info {
  background: rgba(0, 212, 255, 0.15);
  border: 1px solid var(--guardian-color);
  color: var(--guardian-color);
}

.config-info {
  font-size: 0.85rem;
  color: #aaa;
  margin-top: 8px;
}

.config-info span {
  color: var(--guardian-color);
}

/* =====================
   NAVBAR
   ===================== */
.guardian-navbar {
  background-color: var(--primary-color);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  color: #fff;
}

.guardian-navbar .brand {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--guardian-color);
  letter-spacing: 2px;
}

.guardian-navbar .system-badge {
  font-size: 0.7rem;
  background: rgba(0, 212, 255, 0.15);
  border: 1px solid var(--guardian-color);
  color: var(--guardian-color);
  padding: 2px 10px;
  border-radius: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* =====================
   NAVBAR FISSA COMUNE
   ===================== */
.g-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 56px;
  background: #2c3e50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.g-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.g-brand-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #00d4ff;
  letter-spacing: 3px;
}
.g-system-pill {
  background: rgba(0, 212, 255, 0.15);
  border: 1px solid #00d4ff;
  color: #00d4ff;
  font-size: 0.65rem;
  padding: 2px 8px;
  border-radius: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.g-user {
  position: relative;
}
.g-user-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 6px 14px;
  cursor: pointer;
  color: #eee;
  font-size: 0.9rem;
  transition: background 0.2s;
  user-select: none;
}
.g-user-btn:hover {
  background: rgba(255, 255, 255, 0.14);
}
.g-avatar {
  width: 28px;
  height: 28px;
  background: #00d4ff;
  color: #1a1a2e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}
.g-chevron {
  font-size: 0.6rem;
  color: #aaa;
  transition: transform 0.2s;
}
.g-user-btn.open .g-chevron {
  transform: rotate(180deg);
}
.g-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #1e2d3d;
  border: 1px solid #0f3460;
  border-radius: 10px;
  min-width: 210px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  z-index: 1001;
}
.g-dropdown.open {
  display: block;
}
.g-dropdown-header {
  padding: 14px 16px;
  border-bottom: 1px solid #0f3460;
  background: rgba(0, 212, 255, 0.05);
}
.g-dname {
  font-weight: 700;
  color: #eee;
  font-size: 0.9rem;
}
.g-drole {
  font-size: 0.75rem;
  color: #00d4ff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}
.g-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  color: #ccc;
  font-size: 0.85rem;
  text-decoration: none;
  transition: background 0.15s;
}
.g-dropdown a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}
.g-danger {
  color: #ff6b6b !important;
}
.g-danger:hover {
  background: rgba(255, 60, 60, 0.1) !important;
}
.g-separator {
  height: 1px;
  background: #0f3460;
  margin: 4px 0;
}

/* =====================
   LAYOUT COMUNE
   ===================== */
body.g-body {
  padding-top: 56px;
  background: #f0f2f5;
}
.g-content {
  max-width: 960px;
  margin: 0 auto;
  padding: 32px 20px;
}
.g-welcome {
  margin-bottom: 28px;
}
.g-welcome h1 {
  font-size: 1.6rem;
  color: #2c3e50;
  margin: 0 0 4px;
}
.g-welcome p {
  color: #6c757d;
  margin: 0;
  font-size: 0.9rem;
}
.g-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 28px;
}
.g-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  text-align: center;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  text-decoration: none;
  display: block;
  color: inherit;
}
.g-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.g-card .icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}
.g-card .count {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.g-card .label {
  font-size: 0.8rem;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.g-widget {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
}
.g-widget h2 {
  font-size: 1rem;
  color: #2c3e50;
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f0f0f0;
}
.g-info {
  color: #6c757d;
  font-size: 0.9rem;
  background: #f8f9fa;
  border-radius: 8px;
  padding: 16px;
  border-left: 3px solid #00d4ff;
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 576px) {
  .guardian-card {
    padding: 20px;
  }
  .guardian-logo {
    font-size: 2rem;
  }
  .row {
    flex-direction: column;
  }
  .row .form-group.small {
    flex: 1;
  }
}

/* =====================
   ADMIN PAGES — LAYOUT COMUNE
   ===================== */
.page-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 20px;
}

.page-wrapper.narrow {
  max-width: 800px;
}

.page-wrapper.medium {
  max-width: 900px;
}

.page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.page-header h1 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin: 0;
}

.page-header p {
  color: #6c757d;
  margin: 4px 0 0;
  font-size: 0.9rem;
}

/* =====================
   ADMIN PAGES — CARD
   ===================== */
.a-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  padding: 28px;
  margin-bottom: 24px;
}

.a-card h2 {
  font-size: 1.1rem;
  color: #2c3e50;
  margin: 0 0 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f0f0f0;
}

.a-card.warning {
  border: 2px solid #f39c12;
}
.a-card.info {
  border: 2px solid #3498db;
}
.a-card.success {
  border: 2px solid #2ecc71;
}

.a-card-head {
  padding: 12px 20px;
  border-radius: 8px 8px 0 0;
  margin: -28px -28px 24px;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.a-card-head.warning {
  background: #f39c12;
  color: #fff;
}
.a-card-head.info {
  background: #3498db;
  color: #fff;
}
.a-card-head.success {
  background: #2ecc71;
  color: #fff;
}

/* =====================
   ADMIN PAGES — FORM
   ===================== */
.a-form-group {
  margin-bottom: 18px;
}

.a-form-group label {
  display: block;
  font-size: 0.8rem;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
  font-weight: 600;
}

.a-form-group input,
.a-form-group select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 0.95rem;
  color: #343a40;
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
}

.a-form-group input:focus,
.a-form-group select:focus {
  border-color: #3498db;
}

.a-form-group input:disabled {
  background: #f8f9fa;
  color: #6c757d;
}

.a-form-hint {
  font-size: 0.78rem;
  color: #6c757d;
  margin-top: 4px;
}

.a-form-row {
  display: flex;
  gap: 16px;
}

.a-form-row .a-form-group {
  flex: 1;
}

/* =====================
   ADMIN PAGES — BUTTONS
   ===================== */
.a-btn {
  padding: 10px 28px;
  border-radius: 6px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}

.a-btn-primary {
  background: #00d4ff;
  color: #1a1a2e;
}
.a-btn-primary:hover {
  background: #00b8d9;
}

.a-btn-warning {
  background: #f39c12;
  color: #fff;
}
.a-btn-warning:hover {
  background: #e67e22;
}

.a-btn-secondary {
  background: #f0f0f0;
  color: #666;
}
.a-btn-secondary:hover {
  background: #e0e0e0;
}

.a-btn-new {
  background: #00d4ff;
  color: #1a1a2e;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-block;
}

.a-btn-new:hover {
  background: #00b8d9;
}

.a-btn-sm {
  padding: 5px 12px;
  border-radius: 5px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}

.a-btn-edit {
  background: #e8f4fd;
  color: #3498db;
}
.a-btn-edit:hover {
  background: #3498db;
  color: #fff;
}

.a-btn-delete {
  background: #fde8e8;
  color: #e74c3c;
}
.a-btn-delete:hover {
  background: #e74c3c;
  color: #fff;
}

.a-btn-cancel {
  background: #f0f0f0;
  color: #666;
  padding: 8px 20px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

/* =====================
   ADMIN PAGES — ALERTS
   ===================== */
.a-alert {
  padding: 12px 16px;
  border-radius: 6px;
  margin-bottom: 16px;
  font-weight: 600;
}

.a-alert-ok {
  background: rgba(0, 200, 100, 0.1);
  border: 1px solid #00c864;
  color: #00a854;
}
.a-alert-ko {
  background: rgba(231, 76, 60, 0.1);
  border: 1px solid #e74c3c;
  color: #c0392b;
}
.a-alert-warn {
  background: #fef9e7;
  border: 1px solid #f39c12;
  color: #d68910;
}

/* =====================
   ADMIN PAGES — TABLE
   ===================== */
.a-table {
  width: 100%;
  border-collapse: collapse;
}

.a-table th {
  font-size: 0.8rem;
  color: #6c757d;
  text-transform: uppercase;
  padding: 10px 12px;
  border-bottom: 2px solid #f0f0f0;
  text-align: left;
}

.a-table td {
  padding: 12px;
  border-bottom: 1px solid #f0f0f0;
  vertical-align: middle;
}

.a-table tr:last-child td {
  border-bottom: none;
}
.a-table tr:hover td {
  background: #fafafa;
}

/* =====================
   ADMIN PAGES — BADGES
   ===================== */
.a-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.a-badge-admin {
  background: #fde8e8;
  color: #e74c3c;
}
.a-badge-responsabile {
  background: #fef9e7;
  color: #f39c12;
}
.a-badge-dipendente {
  background: #e8f8f5;
  color: #2ecc71;
}
.a-badge-info {
  background: #e8f4fd;
  color: #3498db;
}
.a-badge-sa {
  background: #fef9e7;
  color: #f39c12;
}

/* =====================
   ADMIN PAGES — STATS GRID
   ===================== */
.a-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.a-stat-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.a-stat-card .a-num {
  font-size: 2rem;
  font-weight: 700;
}
.a-stat-card .a-lbl {
  font-size: 0.8rem;
  color: #6c757d;
  text-transform: uppercase;
}

/* =====================
   ADMIN PAGES — SEARCH
   ===================== */
.a-search {
  padding: 8px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 0.9rem;
  width: 250px;
  outline: none;
}

.a-search:focus {
  border-color: #00d4ff;
}

/* =====================
   ADMIN PAGES — CARD HEADER
   ===================== */
.a-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.a-card-header h2 {
  font-size: 1.1rem;
  color: #2c3e50;
  margin: 0;
}

/* =====================
   ADMIN PAGES — MODAL
   ===================== */
.a-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.a-modal-overlay.active {
  display: flex;
}

.a-modal-box {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  max-width: 420px;
  width: 90%;
}

.a-modal-box h3 {
  margin: 0 0 16px;
  color: #2c3e50;
}

.a-modal-footer {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  justify-content: flex-end;
}

/* =====================
   ADMIN PAGES — INFO ROW (superadmin)
   ===================== */
.a-info-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.9rem;
}

.a-info-row:last-child {
  border-bottom: none;
}
.a-info-row strong {
  color: #6c757d;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.a-priv-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-size: 0.85rem;
}

.a-priv-item::before {
  content: "✔";
  color: #2ecc71;
  font-weight: 700;
}

/* =====================
   ADMIN PAGES — GRID 2 COL
   ===================== */
.a-grid-2 {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 24px;
  align-items: start;
}

/* =====================
   RESPONSIVE ADMIN
   ===================== */
@media (max-width: 768px) {
  .a-form-row {
    flex-direction: column;
  }
  .a-grid-2 {
    grid-template-columns: 1fr;
  }
  .a-search {
    width: 100%;
  }
  .page-header {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}

/* =====================
   LOGIN — INPUT CON ICONA
   ===================== */
.input-icon {
  display: flex;
  align-items: center;
  background: #0f3460;
  border: 1px solid #1a4a7a;
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.input-icon:focus-within {
  border-color: var(--guardian-color);
}
.input-icon .icon {
  padding: 10px 12px;
  background: #162040;
  color: #aaa;
  font-size: 0.9rem;
  border-right: 1px solid #1a4a7a;
  flex-shrink: 0;
}
.input-icon input {
  border: none !important;
  background: transparent !important;
  flex: 1;
  padding: 10px 14px;
  color: #eee;
  font-size: 0.95rem;
  outline: none;
}
.btn-login {
  width: 100%;
  padding: 11px;
  background: var(--guardian-color);
  color: #1a1a2e;
  border: none;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 20px;
  letter-spacing: 1px;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-login:hover {
  background: #00b8d9;
}

/* =====================
   LOGIN — FOOTER
   ===================== */
.guardian-footer {
  margin-top: 24px;
  text-align: center;
  color: #555;
  font-size: 0.82rem;
  line-height: 1.7;
}
.guardian-footer .version {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid #2a2a4a;
  color: #444;
  font-size: 0.8rem;
}
.guardian-footer .version span {
  font-weight: 700;
  font-family: "Courier New", monospace;
  color: #666;
}

/* =====================
   LOGIN — ALERT FLOTTANTE
   ===================== */
.alert-floating {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  background: rgba(231, 76, 60, 0.95);
  color: #fff;
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  animation: slideIn 0.4s ease-out;
  max-width: 320px;
  line-height: 1.5;
}
@keyframes slideIn {
  from {
    transform: translateX(120%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  animation: fadeOut 0.8s ease-out forwards;
}

/* =====================
   TIMBRATURE TABLE
   ===================== */
.timb-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.timb-table th {
  font-size: 0.75rem;
  color: #6c757d;
  text-transform: uppercase;
  padding: 8px 12px;
  border-bottom: 2px solid #f0f0f0;
  text-align: left;
}
.timb-table td {
  padding: 10px 12px;
  border-bottom: 1px solid #f5f5f5;
  vertical-align: middle;
}
.timb-table tr:last-child td {
  border-bottom: none;
}
.timb-table tr:hover td {
  background: #fafafa;
}
.timb-badge {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 700;
  margin: 2px;
}
.timb-E {
  background: #e8f8f5;
  color: #27ae60;
}
.timb-U {
  background: #fde8e8;
  color: #e74c3c;
}
.timb-ora {
  font-family: "Courier New", monospace;
  font-weight: 600;
}

/* =====================
   MOBILE ≤ 768px
   ===================== */
@media (max-width: 768px) {
  .g-hide-mobile {
    display: none !important;
  }
  .g-system-pill {
    display: none !important;
  }
  .timb-table td:last-child {
    white-space: nowrap;
  }
  .timb-badge {
    display: inline-flex;
    margin: 1px;
  }
  .vista-estesa-text {
    display: none;
  }
}
