/* /Features/Finanzas/DolarInfoPage.razor.rz.scp.css */
/* ===== CSS VARIABLES - Paleta de Colores Shmenkare.Soft ===== */
:root[b-qh7cugb8cz] {
  --primary-color: #0066cc;
  --secondary-color: #001f3f;
  --accent-color: #00c7b7;
  --bg-color: #f8f9fa;
  --highlight-color: #0066cc;
  --border-radius: 12px;
  --transition-speed: 0.25s;
  --card-bg: #ffffff;
  --text-color: #1a1a1b;
  --border-color: #e2e8f0;
}

.dark-mode[b-qh7cugb8cz],
html[data-bs-theme="dark"][b-qh7cugb8cz],
body[data-bs-theme="dark"][b-qh7cugb8cz] {
  --bg-color: #0f172a;
  --card-bg: #1e293b;
  --highlight-color: #00c7b7;
  --text-color: #f8f9fa;
  --border-color: #334155;
}

/* ===== ANIMATIONS ===== */
@keyframes slideInFromRight-b-qh7cugb8cz {
  0% {
    transform: translateX(500px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes spin-b-qh7cugb8cz {
  to {
    transform: rotate(360deg);
  }
}

/* ===== LAYOUT ===== */
.root-grid[b-qh7cugb8cz] {
  display: flex;
  flex-direction: column;
  gap: 0.2rem; /* 10px */
  overflow-y: auto;
  height: 100%;
  margin: 0 -1.5rem;
  padding: 0.5rem; /* 8px */
  overflow-x: hidden;
}

.root-grid > *[b-qh7cugb8cz] {
  opacity: 0;
}

.root-grid.loaded > *[b-qh7cugb8cz] {
  animation: slideInFromRight-b-qh7cugb8cz 400ms cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

.root-grid.loaded > *:nth-child(2)[b-qh7cugb8cz] {
  animation-delay: 50ms;
}

.root-grid.loaded > *:nth-child(3)[b-qh7cugb8cz] {
  animation-delay: 100ms;
}

.root-grid.loaded > *:nth-child(4)[b-qh7cugb8cz] {
  animation-delay: 150ms;
}

.root-grid.loaded > *:nth-child(5)[b-qh7cugb8cz] {
  animation-delay: 200ms;
}

/* ===== UTILITY CLASSES ===== */
.vstack[b-qh7cugb8cz] {
  display: flex;
  flex-direction: column;
}

.spacing-5[b-qh7cugb8cz] {
  gap: 0.3125rem; /* 5px */
}

.spacing-15[b-qh7cugb8cz] {
  gap: 0.3125rem; /* 5px */
  height: 11.25rem; /* 180px */
}

.h-center[b-qh7cugb8cz] {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: auto;
}

.align-end[b-qh7cugb8cz] {
  align-items: flex-end;
}

/* ===== CARD STYLES ===== */
.card[b-qh7cugb8cz] {
  padding: 0.9rem;
  border-radius: var(--border-radius);
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    #0a0a0a
  ) !important;
  border: 1px solid var(--primary-color) !important;
  height: auto;
  transition: all var(--transition-speed) ease;
  color: white !important;
}

.card:hover[b-qh7cugb8cz] {
  border-color: var(--accent-color) !important;
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.4);
}

/* Asegurar que las tarjetas mantengan colores azules en modo oscuro */
.dark-theme .card[b-qh7cugb8cz],
html[data-bs-theme="dark"] .card[b-qh7cugb8cz],
.page.dark-theme .card[b-qh7cugb8cz],
[data-bs-theme="dark"] .card[b-qh7cugb8cz] {
  background: linear-gradient(135deg, #001f3f, #121212) !important;
  border-color: #0066cc !important;
  color: white !important;
}

/* Forzar colores en todos los estados del modo oscuro */
body.dark-theme .card[b-qh7cugb8cz],
body[data-bs-theme="dark"] .card[b-qh7cugb8cz] {
  background: linear-gradient(135deg, #001f3f, #121212) !important;
  border-color: #0066cc !important;
}

/* Override de Bootstrap card en modo oscuro */
.dark-theme .card.card[b-qh7cugb8cz],
[data-bs-theme="dark"] .card.card[b-qh7cugb8cz] {
  background: linear-gradient(135deg, #001f3f, #121212) !important;
  border: 0.12rem solid #0066cc !important;
}

/* ===== DOLLAR INFO CARD ===== */
.dolar-title[b-qh7cugb8cz] {
  color: #ffffff;
  font-size: 1.25rem; /* 20px */
  font-weight: 600;
  padding: 0.625rem; /* 10px */
}

.info-grid[b-qh7cugb8cz] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.9375rem; /* 15px */
  padding: 0.625rem; /* 10px */
}

.info-label[b-qh7cugb8cz] {
  color: #e2e8f0;
  font-size: 0.875rem; /* 14px */
}

.dolar-value[b-qh7cugb8cz] {
  color: #18f489;
  font-size: 1.3rem;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(24, 244, 137, 0.5);
}

.info-value[b-qh7cugb8cz] {
  color: white;
  font-size: 1.3rem;
  font-weight: bold;
  /*text-shadow: 0 0 10px rgba(24, 244, 137, 0.5);*/
}

/* ===== RESPONSIVE DESIGN ===== */
/* Tablets (768px en adelante) */
@media (min-width: 48rem) {
  .info-grid[b-qh7cugb8cz] {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem; /* 20px */
  }

  .card[b-qh7cugb8cz] {
    padding: 1.25rem; /* 20px */
  }
}

/* Escritorios (1024px en adelante) */
@media (min-width: 64rem) {
  .info-grid[b-qh7cugb8cz] {
    grid-template-columns: repeat(4, 1fr);
  }

  .dolar-title[b-qh7cugb8cz] {
    font-size: 1.5rem;
  }
}

.update-date[b-qh7cugb8cz] {
  color: var(--light-color);
  font-size: 0.875rem; /* 14px */
}

.fuente-container[b-qh7cugb8cz] {
  grid-column: span 2;
  text-align: center;
  margin-top: 0.625rem; /* 10px */
}

.spinner-container[b-qh7cugb8cz] {
  height: 1.875rem; /* 30px */
  display: flex;
  justify-content: center;
  align-items: center;
}

.spinner[b-qh7cugb8cz] {
  border: 0.25rem solid rgba(0, 199, 183, 0.2);
  border-left-color: var(--accent-color);
  border-radius: 50%;
  width: 1.875rem; /* 30px */
  height: 1.875rem; /* 30px */
  animation: spin-b-qh7cugb8cz 1s linear infinite;
}

/* ===== REVIEW PROMPT ===== */
.review-prompt[b-qh7cugb8cz] {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  border: 2px solid var(--accent-color);
  border-radius: var(--border-radius);
  padding: 1.25rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
  transition: all var(--transition-speed) ease;
}

.review-prompt:hover[b-qh7cugb8cz] {
  box-shadow: 0 6px 16px rgba(0, 199, 183, 0.4);
}

.review-prompt label[b-qh7cugb8cz] {
  display: block;
  font-weight: bold;
  font-size: 1.25rem;
  color: white;
  text-align: center;
  margin-bottom: 0.5rem;
}

.review-prompt p[b-qh7cugb8cz] {
  margin: 0 0 1.25rem 0;
  color: #e9ecef; /* gray-200 */
  text-align: center;
  font-size: 1rem;
  line-height: 1.5;
}

.review-prompt-actions[b-qh7cugb8cz] {
  display: flex;
  justify-content: center;
  gap: 1rem;
  width: 100%;
}

/* Estilos para los botones */
.review-prompt .btn-limpiar[b-qh7cugb8cz] {
  flex: 1;
  min-width: 120px;
  max-width: 160px;
  padding: 0.6rem 1rem;
  border: none;
  border-radius: 1.875rem; /* 30px */
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  text-align: center;
  font-size: 0.95rem;
}

/* Botón 'Más tarde' en gris */
.review-prompt .btn-later[b-qh7cugb8cz] {
  background-color: #6c757d; /* gray-600 Bootstrap */
  color: white;
}

.review-prompt .btn-later:hover[b-qh7cugb8cz] {
  background-color: #495057; /* gray-700 */
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Botón 'Calificar ahora' - usando accent color */
.review-prompt .btn-limpiar:not(.btn-later)[b-qh7cugb8cz] {
  background-color: var(--accent-color);
  color: white;
}

.review-prompt .btn-limpiar:not(.btn-later):hover[b-qh7cugb8cz] {
  background-color: #00a89a; /* Darker accent */
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 199, 183, 0.4);
}

/* Efecto al hacer clic */
.review-prompt .btn-limpiar:active[b-qh7cugb8cz] {
  transform: translateY(1px);
}

/* ===== FORM CARD ===== */
/*.disponible-label {
    color: #e2e8f0;
    font-size: 0.775rem; /* 14px 
}*/

.input-border[b-qh7cugb8cz] {
  border-radius: 0.625rem; /* 10px */
  border: 0.0625rem solid #334155; /* 1px */
  background-color: #0f1420;
  margin-bottom: 0.625rem; /* 10px */
}

.entry[b-qh7cugb8cz] {
  background-color: transparent;
  border: none;
  color: white;
  padding: 0 0.625rem; /* 0 10px */
  height: 2.5rem; /* 40px */
  width: 100%;
}

.entry:focus[b-qh7cugb8cz] {
  outline: none;
  border-color: #4f85e5;
}

.entry[b-qh7cugb8cz]::placeholder {
  color: #6c757d; /* gray-600 */
}

/* ===== RESULTS GRID ===== */
.results-grid[b-qh7cugb8cz] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem; /* 8px */
}

.result-card[b-qh7cugb8cz] {
  padding: 0.625rem; /* 10px */
  border-radius: 0.9375rem; /* 15px */
}

/* .result-label {
    color: #e2e8f0;
    font-size: 0.775rem; /* 14px 
} */

/*.result-value {
    color: white;
    font-size: 1.25rem;*/ /* 22px */
/*font-weight: bold;
}*/

/* ===== BUTTON ===== */
.btn-limpiar[b-qh7cugb8cz] {
  flex: 1;
  font-weight: 800;
  font-size: 0.875rem; /* 14px */
  color: white;
  position: relative;
  transition: all var(--transition-speed) ease;
  background-color: #f43f5e;
  border-radius: var(--border-radius);
  height: 2.8125rem; /* 45px */
  border: none;
  cursor: pointer;
}

.btn-limpiar:hover[b-qh7cugb8cz] {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(244, 63, 94, 0.4);
}

.title[b-qh7cugb8cz] {
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
  margin: 0;
}

.offline-text[b-qh7cugb8cz] {
  /* color: #dc3545; */
  color: #f43f5e /* Bootstrap danger */
  font-weight: bold;
  margin-left: 0.8rem;
  display: inline-block;
  padding: 2px 8px;
  background-color: #ffc107; /* Bootstrap warning */
  border-radius: 12px;
}

/* ===== HELP SECTION (ACORDEÓN) ===== */
/* Fila del título con botón de ayuda */
.title-row[b-qh7cugb8cz] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

/* Botón compacto de ayuda */
.help-toggle-btn-compact[b-qh7cugb8cz] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  background: linear-gradient(135deg, #0066cc, #001f3f);
  border: 2px solid #00c7b7;
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 102, 204, 0.3);
  flex-shrink: 0;
}

.help-toggle-btn-compact:hover[b-qh7cugb8cz] {
  background: linear-gradient(135deg, #0077dd, #002a50);
  border-color: #00d4c4;
  box-shadow: 0 4px 12px rgba(0, 199, 183, 0.4);
  transform: scale(1.1);
}

.help-toggle-btn-compact:active[b-qh7cugb8cz] {
  transform: scale(0.95);
  box-shadow: 0 2px 6px rgba(0, 102, 204, 0.2);
}

.help-icon[b-qh7cugb8cz] {
  font-size: 0.8rem;
}

/* Contenido de ayuda con mejor contraste */
.help-content[b-qh7cugb8cz] {
  margin: 0.5rem 0.5rem 1rem 0.5rem;
  padding: 1.25rem;
  background: linear-gradient(135deg, #001f3f, #0a0a0a);
  border: 2px solid #0066cc;
  border-radius: 12px;
  color: #ffffff;
  animation: slideDown-b-qh7cugb8cz 0.3s ease-out;
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.2);
}

@keyframes slideDown-b-qh7cugb8cz {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.help-content h4[b-qh7cugb8cz] {
  color: #18f489;
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0.75rem 0 0.5rem 0;
  text-shadow: 0 0 8px rgba(24, 244, 137, 0.3);
}

.help-content h4:first-child[b-qh7cugb8cz] {
  margin-top: 0;
}

.help-content p[b-qh7cugb8cz] {
  color: #f8f9fa;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 0.75rem 0;
}

.help-content p:last-child[b-qh7cugb8cz] {
  margin-bottom: 0;
}

.help-content strong[b-qh7cugb8cz] {
  color: #00c7b7;
  font-weight: 700;
}

/* ===== BUTTONS CONTAINER ===== */
.buttons-container[b-qh7cugb8cz] {
  display: flex;
  gap: 0.625rem; /* 10px */
  justify-content: space-between;
  align-items: center;
}

/* ===== CONSOLIDAR DISPONIBLE BUTTON ===== */
.btn-consolidar[b-qh7cugb8cz] {
  flex: 1;
  font-weight: 800;
  font-size: 0.875rem; /* 14px */
  color: white;
  position: relative;
  transition: all var(--transition-speed) ease;
  background-color: var(--primary-color);
  border-radius: var(--border-radius);
  height: 2.8125rem; /* 45px */
  border: none;
  cursor: pointer;
}

.btn-consolidar:hover[b-qh7cugb8cz] {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.4);
}

/* Asegurar que btn-limpiar también use flex */
.btn-limpiar[b-qh7cugb8cz] {
  flex: 1;
}

/* Responsive: botones más pequeños en pantallas muy angostas, pero siempre lado a lado */
@media (max-width: 400px) {
  .btn-limpiar[b-qh7cugb8cz],
  .btn-consolidar[b-qh7cugb8cz] {
    font-size: 0.75rem; /* 12px */
    padding: 0 0.5rem;
  }
}
/* /Features/Historial/HistorialPage.razor.rz.scp.css */
/* ===== CSS VARIABLES - Paleta de Colores Shmenkare.Soft ===== */
:root[b-80ff2cav47] {
    --primary-color: #0066cc;
    --secondary-color: #001f3f;
    --accent-color: #00c7b7;
    --bg-color: #f8f9fa;
    --highlight-color: #0066cc;
    --border-radius: 12px;
    --transition-speed: 0.25s;
    --card-bg: #ffffff;
    --text-color: #1a1a1b;
    --border-color: #e2e8f0;
}

.dark-mode[b-80ff2cav47], html[data-bs-theme="dark"][b-80ff2cav47], body[data-bs-theme="dark"][b-80ff2cav47] {
    --bg-color: #0f172a;
    --card-bg: #1e293b;
    --highlight-color: #00c7b7;
    --text-color: #f8f9fa;
    --border-color: #334155;
}

/* ===== ANIMATIONS ===== */
@keyframes slideInFromRight-b-80ff2cav47 {
    0% {
        transform: translateX(500px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.fade-out[b-80ff2cav47] {
    opacity: 0;
    transform: translateX(-100%);
    height: 0;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

/* ===== LAYOUT ===== */
.root-grid[b-80ff2cav47] {
    display: flex;
    flex-direction: column;
    gap: 0.2rem; /* 10px */
    overflow-y: auto;
    height: 100%;
    margin: 0 -1.5rem;
    padding: 0.5rem; /* 8px */
    overflow-x: hidden;
}

    .root-grid > *[b-80ff2cav47] {
        opacity: 0;
    }

    .root-grid.loaded[b-80ff2cav47] {
        opacity: 1;
        transform: translateX(0);
    }

        .root-grid.loaded > *[b-80ff2cav47] {
            animation: slideInFromRight-b-80ff2cav47 400ms cubic-bezier(0.33, 1, 0.68, 1) forwards;
        }

            /* Stagger the animation for children */
            .root-grid.loaded > *:nth-child(2)[b-80ff2cav47] {
                animation-delay: 50ms;
            }

            .root-grid.loaded > *:nth-child(3)[b-80ff2cav47] {
                animation-delay: 100ms;
            }

            .root-grid.loaded > *:nth-child(4)[b-80ff2cav47] {
                animation-delay: 150ms;
            }

            .root-grid.loaded > *:nth-child(5)[b-80ff2cav47] {
                animation-delay: 200ms;
            }

            .root-grid.loaded > *:nth-child(6)[b-80ff2cav47] {
                animation-delay: 250ms;
            }

            .root-grid.loaded > *:nth-child(7)[b-80ff2cav47] {
                animation-delay: 300ms;
            }

            .root-grid.loaded > *:nth-child(8)[b-80ff2cav47] {
                animation-delay: 350ms;
            }

            .root-grid.loaded > *:nth-child(9)[b-80ff2cav47] {
                animation-delay: 400ms;
            }

            .root-grid.loaded > *:nth-child(10)[b-80ff2cav47] {
                animation-delay: 450ms;
            }

/* ===== GRID LAYOUT ===== */
.grid-row-5[b-80ff2cav47] {
    margin-top: 0.3125rem; /* 5px */
}

/* ===== UTILITY CLASSES ===== */
.vstack[b-80ff2cav47] {
    display: flex;
    flex-direction: column;
    gap: 0.2rem; /* 15px */
}

.h-center[b-80ff2cav47] {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 1.5rem 0; /* 24px top and bottom */
}

/* ===== CARD STYLES ===== */
.history-card[b-80ff2cav47] {
    background: linear-gradient(135deg, var(--secondary-color), #0a0a0a) !important;
    border-radius: var(--border-radius);
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem; /* 20px */
    transition: all var(--transition-speed) ease;
    border: 1px solid var(--primary-color) !important;
}

    .history-card:hover[b-80ff2cav47] {
        border-color: var(--accent-color) !important;
        box-shadow: 0 4px 12px rgba(0, 102, 204, 0.2);
    }

.dark-theme .history-card[b-80ff2cav47],
html[data-bs-theme="dark"] .history-card[b-80ff2cav47],
.page.dark-theme .history-card[b-80ff2cav47],
[data-bs-theme="dark"] .history-card[b-80ff2cav47] {
    background: linear-gradient(135deg, var(--secondary-color), #0a0a0a) !important;
    border-color: var(--primary-color) !important;
    color: white !important;
}

/* Forzar colores en todos los estados del modo oscuro */
body.dark-theme .history-card[b-80ff2cav47],
body[data-bs-theme="dark"] .history-card[b-80ff2cav47] {
    background: linear-gradient(135deg, var(--secondary-color), #0a0a0a) !important;
    border-color: var(--primary-color) !important;
}

/* Override de Bootstrap card en modo oscuro */
.dark-theme .history-card.history-card[b-80ff2cav47],
[data-bs-theme="dark"] .history-card.history-card[b-80ff2cav47] {
    background: linear-gradient(135deg, var(--secondary-color), #0a0a0a) !important;
    border: 1px solid var(--primary-color) !important;
}

.history-card:active[b-80ff2cav47] {
    transform: scale(0.98);
}

/* ===== BUTTONS ===== */

.btn-delete[b-80ff2cav47] {
    background: #f43f5e;
    border: none;
    color: white; /* Icon will be white on the red button */
    width: 2.25rem; /* 36px */
    height: 2.25rem; /* 36px */
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    user-select: none;
    /* transition: all 0.1s ease;
    transform: translateY(0);
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.1);*/
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
}

    .btn-delete:hover[b-80ff2cav47] {
        background: #e11d48;
        transform: translateY(-1px);
        box-shadow: 0 4px 8px rgba(244, 63, 94, 0.4);
    }

    .btn-delete:active[b-80ff2cav47] {
        transform: translateY(1px);
    }

.btn[b-80ff2cav47] {
    border: none;
    border-radius: var(--border-radius);
    padding: 0.75rem 0; /* 12px 0 */
    font-weight: 600;
    font-size: 0.875rem; /* 14px */
    color: white;
    cursor: pointer;
    text-align: center;
    position: relative;
    transition: all var(--transition-speed) ease;
    height: 2.8125rem; /* 45px */
}

    .btn:hover[b-80ff2cav47] {
        transform: translateY(-1px);
    }

    .btn:active[b-80ff2cav47] {
        transform: translateY(1px);
    }

.red-btn[b-80ff2cav47] {
    background: #f43f5e;
    color: white;
}

    .red-btn:hover[b-80ff2cav47] {
        background: #e11d48;
        box-shadow: 0 4px 12px rgba(244, 63, 94, 0.4);
    }

.btn-clear-history[b-80ff2cav47] {
    width: 100%;
    max-width: 12.5rem; /* 200px */
}

/* ===== BANNER ===== */
/*.ad-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    color: #94a3b8;
    border: 0.0625rem dashed #334155;*/ /* 1px */
/*border-radius: 0.625rem;*/ /* 10px */
/*min-height: 3.125rem;*/ /* 50px */
/*}*/

/* ===== TYPOGRAPHY ===== */
.title[b-80ff2cav47] {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 800;
    margin: 0;
}

.history-item-description[b-80ff2cav47] {
    color: white;
    font-weight: 500;
}

.history-item-amount[b-80ff2cav47] {
    color: #18f489;
    font-weight: 500;
    text-shadow: 0 0 10px rgba(24, 244, 137, 0.5);
}

.history-item-date[b-80ff2cav47] {
    color: #94a3b8;
    font-size: 0.8rem; /* 12.8px - ya es relativo */
}

/* ===== RESPONSIVE DESIGN ===== */
/* Tablets (768px en adelante) */
@media (min-width: 48rem) {
    .history-cards-container[b-80ff2cav47] {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem; /* 16px */
    }

    .history-card[b-80ff2cav47] {
        margin-bottom: 0;
    }
}

/* Escritorios (1024px en adelante) */
@media (min-width: 64rem) {
    .history-cards-container[b-80ff2cav47] {
        grid-template-columns: repeat(3, 1fr);
    }

    .history-card[b-80ff2cav47] {
        padding: 1.25rem; /* 20px */
    }

    .btn[b-80ff2cav47] {
        padding: 0.875rem 0; /* 14px 0 */
        font-size: 1rem; /* 16px */
    }
}
/* ===== ICONS ===== */
.help-icon[b-80ff2cav47] {
    font-size: 0.8rem;
}

/* ===== HELP SECTION (ACORDEÓN) ===== */
/* Fila del título con botón de ayuda */
.title-row[b-80ff2cav47] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

/* Botón compacto de ayuda */
.help-toggle-btn-compact[b-80ff2cav47] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    background: linear-gradient(135deg, #0066cc, #001f3f);
    border: 2px solid #00c7b7;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.3);
    flex-shrink: 0;
}

    .help-toggle-btn-compact:hover[b-80ff2cav47] {
        background: linear-gradient(135deg, #0077dd, #002a50);
        border-color: #00d4c4;
        box-shadow: 0 4px 12px rgba(0, 199, 183, 0.4);
        transform: scale(1.1);
    }

    .help-toggle-btn-compact:active[b-80ff2cav47] {
        transform: scale(0.95);
        box-shadow: 0 2px 6px rgba(0, 102, 204, 0.2);
    }

/* Contenido de ayuda con mejor contraste */
.help-content[b-80ff2cav47] {
    margin: 0.5rem 0.5rem 1rem 0.5rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, #001f3f, #0a0a0a);
    border: 2px solid #0066cc;
    border-radius: 12px;
    color: #ffffff;
    animation: slideDown-b-80ff2cav47 0.3s ease-out;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.2);
}

@keyframes slideDown-b-80ff2cav47 {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.help-content h4[b-80ff2cav47] {
    color: #18f489;
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0.75rem 0 0.5rem 0;
    text-shadow: 0 0 8px rgba(24, 244, 137, 0.3);
}

    .help-content h4:first-child[b-80ff2cav47] {
        margin-top: 0;
    }

.help-content p[b-80ff2cav47] {
    color: #f8f9fa;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 0.75rem 0;
}

    .help-content p:last-child[b-80ff2cav47] {
        margin-bottom: 0;
    }

.help-content strong[b-80ff2cav47] {
    color: #00c7b7;
    font-weight: 700;
}
/* /Features/Inventario/VerduleriaPage.razor.rz.scp.css */
/* ===== CSS VARIABLES - Paleta de Colores Shmenkare.Soft ===== */
:root[b-mueridjel5] {
    --primary-color: #0066cc;
    --secondary-color: #001f3f;
    --accent-color: #00c7b7;
    --bg-color: #f8f9fa;
    --highlight-color: #0066cc;
    --border-radius: 12px;
    --transition-speed: 0.25s;
    --card-bg: #ffffff;
    --text-color: #1a1a1b;
    --border-color: #e2e8f0;
}

.dark-mode[b-mueridjel5],
html[data-bs-theme="dark"][b-mueridjel5],
body[data-bs-theme="dark"][b-mueridjel5] {
    --bg-color: #0f172a;
    --card-bg: #1e293b;
    --highlight-color: #00c7b7;
    --text-color: #f8f9fa;
    --border-color: #334155;
}

/* ===== ANIMATIONS ===== */
@keyframes slideInFromRight-b-mueridjel5 {
    0% {
        transform: translateX(500px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ===== LAYOUT ===== */
.root-grid[b-mueridjel5] {
    display: flex;
    flex-direction: column;
    gap: 0.2em; /* 10px */
    overflow-y: auto;
    height: 100%;
    margin: 0 -1.5rem;
    padding: 0.5rem; /* 8px */
    overflow-x: hidden;
}

    .root-grid > *[b-mueridjel5] {
        opacity: 0;
    }

    .root-grid.loaded[b-mueridjel5] {
        opacity: 1;
        transform: translateX(0);
    }

        .root-grid.loaded > *[b-mueridjel5] {
            animation: slideInFromRight-b-mueridjel5 400ms cubic-bezier(0.33, 1, 0.68, 1) forwards;
        }

            /* Stagger the animation for children */
            .root-grid.loaded > *:nth-child(2)[b-mueridjel5] {
                animation-delay: 50ms;
            }

            .root-grid.loaded > *:nth-child(3)[b-mueridjel5] {
                animation-delay: 100ms;
            }

            .root-grid.loaded > *:nth-child(4)[b-mueridjel5] {
                animation-delay: 150ms;
            }

            .root-grid.loaded > *:nth-child(5)[b-mueridjel5] {
                animation-delay: 200ms;
            }

            .root-grid.loaded > *:nth-child(6)[b-mueridjel5] {
                animation-delay: 250ms;
            }

            .root-grid.loaded > *:nth-child(7)[b-mueridjel5] {
                animation-delay: 300ms;
            }

            .root-grid.loaded > *:nth-child(8)[b-mueridjel5] {
                animation-delay: 350ms;
            }

            .root-grid.loaded > *:nth-child(9)[b-mueridjel5] {
                animation-delay: 400ms;
            }

            .root-grid.loaded > *:nth-child(10)[b-mueridjel5] {
                animation-delay: 450ms;
            }

/* ===== GRID LAYOUT ===== */
.grid-row-0[b-mueridjel5],
.grid-row-1[b-mueridjel5] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 0.5rem; /* 8px */
}

.grid-row-3[b-mueridjel5] {
    margin-top: 0;
}

.grid-row-4[b-mueridjel5] {
    margin-top: 0;
}

.grid-row-5[b-mueridjel5] {
    margin-top: 0.3125rem; /* 5px */
}

/* ===== UTILITY CLASSES ===== */
.vstack[b-mueridjel5] {
    display: flex;
    flex-direction: column;
}

.hstack[b-mueridjel5] {
    display: flex;
    flex-direction: row;
}

.spacing-5[b-mueridjel5] {
    gap: 0.3125rem; /* 5px */
}

.spacing-10[b-mueridjel5] {
    gap: 0.625rem; /* 10px */
}

.spacing-20[b-mueridjel5] {
    gap: 1.25rem; /* 20px */
}

.h-center[b-mueridjel5] {
    justify-content: center;
    text-align: center;
}

.v-center[b-mueridjel5] {
    align-items: center;
}

/* ===== CARD STYLES ===== */
.card[b-mueridjel5] {
    padding: 1.25rem;
    border-radius: var(--border-radius);
    background: linear-gradient( 135deg, var(--secondary-color), #0a0a0a ) !important;
    border: 1px solid var(--primary-color) !important;
    width: 100%;
    transition: all var(--transition-speed) ease;
    color: white !important;
}

    .card:hover[b-mueridjel5] {
        border-color: var(--accent-color) !important;
        box-shadow: 0 4px 12px rgba(0, 102, 204, 0.4);
    }

/* Asegurar que las tarjetas mantengan colores azules en modo oscuro */
.dark-theme .card[b-mueridjel5],
html[data-bs-theme="dark"] .card[b-mueridjel5],
.page.dark-theme .card[b-mueridjel5],
[data-bs-theme="dark"] .card[b-mueridjel5] {
    background: linear-gradient(135deg, #001f3f, #121212) !important;
    border-color: #0066cc !important;
    color: white !important;
}

/* Forzar colores en todos los estados del modo oscuro */
body.dark-theme .card[b-mueridjel5],
body[data-bs-theme="dark"] .card[b-mueridjel5] {
    background: linear-gradient(135deg, #001f3f, #121212) !important;
    border-color: #0066cc !important;
}

/* Override de Bootstrap card en modo oscuro */
.dark-theme .card.card[b-mueridjel5],
[data-bs-theme="dark"] .card.card[b-mueridjel5] {
    background: linear-gradient(135deg, #001f3f, #121212) !important;
    border: 0.12rem solid #0066cc !important;
}

.result-card[b-mueridjel5] {
    padding: 0.625rem; /* 10px */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.orange-border[b-mueridjel5] {
    border: 0.12rem solid #f97316 !important;
}

/* Mantener borde naranja en modo oscuro */
.dark-theme .orange-border[b-mueridjel5],
html[data-bs-theme="dark"] .orange-border[b-mueridjel5],
.page.dark-theme .orange-border[b-mueridjel5],
[data-bs-theme="dark"] .orange-border[b-mueridjel5],
body.dark-theme .orange-border[b-mueridjel5],
body[data-bs-theme="dark"] .orange-border[b-mueridjel5] {
    border: 0.12rem solid #f97316 !important;
}

.form-card[b-mueridjel5] {
    padding: 0.9375rem; /* 15px */
    border-radius: 0.9375rem; /* 15px */
    width: 100%;
}

/* ===== FORM ELEMENTS ===== */
.input-border[b-mueridjel5] {
    border-radius: 0.625rem; /* 10px */
    border: 0.0625rem solid #334155; /* 1px */
    /* background-color: #0f172a; */
    background-color: #0f1420;
}

.entry[b-mueridjel5] {
    background-color: transparent;
    border: none;
    color: white;
    padding: 0 0.625rem; /* 0 10px */
    height: 2.5rem; /* 40px */
    width: 100%;
}

    .entry:focus[b-mueridjel5] {
        outline: none;
        border-color: #4f85e5;
    }

    .entry[b-mueridjel5]::placeholder {
        color: #64748b;
    }

/* ===== BUTTONS ===== */
.button-grid[b-mueridjel5] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.3125rem; /* 5px */
}

.btn[b-mueridjel5] {
    font-weight: 800;
    font-size: 0.625rem; /* 10px */
    color: white;
    position: relative;
    transition: all var(--transition-speed) ease;
    border-radius: var(--border-radius);
    height: 2.8125rem; /* 45px */
    border: none;
    cursor: pointer;
    text-align: center;
    padding: 0 0.3125rem; /* 0 5px */
}

    .btn:hover[b-mueridjel5] {
        transform: translateY(-1px);
    }

    .btn:active[b-mueridjel5] {
        transform: translateY(1px);
    }

.primary-btn[b-mueridjel5] {
    background-color: #0066cc;
    box-shadow: 0 2px 4px rgba(0, 102, 204, 0.3);
}

.orange-btn[b-mueridjel5] {
    background-color: #f97316;
    box-shadow: 0 2px 4px rgba(249, 115, 22, 0.3);
}

.green-btn[b-mueridjel5] {
    background-color: #10b981;
    box-shadow: 0 2px 4px rgba(16, 185, 129, 0.3);
}

.red-btn[b-mueridjel5] {
    background-color: #f43f5e;
    box-shadow: 0 2px 4px rgba(244, 63, 94, 0.3);
}

.image-button[b-mueridjel5] {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

    .image-button img[b-mueridjel5] {
        display: block;
    }

/* ===== SWITCH TOGGLE ===== */
.switch[b-mueridjel5] {
    position: relative;
    display: inline-block;
    width: 2.5rem; /* 40px */
    height: 1.25rem; /* 20px */
}

    .switch input[b-mueridjel5] {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider[b-mueridjel5] {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 1.25rem; /* 20px */
}

    .slider[b-mueridjel5]:before {
        position: absolute;
        content: "";
        height: 1rem; /* 16px */
        width: 1rem; /* 16px */
        left: 0.125rem; /* 2px */
        bottom: 0.125rem; /* 2px */
        background-color: white;
        transition: 0.4s;
        border-radius: 50%;
    }

.switch input:checked + .slider[b-mueridjel5] {
    background-color: #4f85e5;
}

    .switch input:checked + .slider[b-mueridjel5]:before {
        transform: translateX(20px);
    }

/* ===== BANNER ===== */
/*.ad-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    color: #94a3b8;
    border: 0.0625rem dashed #334155;*/ /* 1px */
/*border-radius: 0.625rem;*/ /* 10px */
/*min-height: 3.125rem;*/ /* 50px */
/*}*/

/* ===== TYPOGRAPHY ===== */
.info-label[b-mueridjel5] {
    color: #cbd5e1;
    font-size: 0.875rem; /* 14px */
}

.total-value[b-mueridjel5] {
    color: white;
    font-size: 1.3rem; /* 22px */
    font-weight: bold;
}

.disponible-value[b-mueridjel5] {
    color: #ffc300;
    font-size: 1.3rem; /* 22px */
    font-weight: bold;
}

.verduleria-label[b-mueridjel5] {
    color: #18f489;
    font-size: 1.3rem; /* 22px */
    font-weight: bold;
    text-shadow: 0 0 10px rgba(24, 244, 137, 0.5);
}

/* ===== RESPONSIVE DESIGN ===== */
/* Tablets (768px en adelante) */
@media (min-width: 48rem) {
    .grid-row-0[b-mueridjel5],
    .grid-row-1[b-mueridjel5] {
        /* grid-template-columns: repeat(2, 1fr);*/
        gap: 0.5rem; /* 8px */
    }

    .card[b-mueridjel5] {
        padding: 0.625rem; /* 10px */
    }

    .button-grid[b-mueridjel5] {
        /* grid-template-columns: repeat(4, 1fr);*/
        gap: 0.5rem; /* 8px */
    }

    .btn[b-mueridjel5] {
        font-size: 0.75rem; /* 12px */
        height: 3rem; /* 48px */
    }

    .verduleria-label[b-mueridjel5] {
        font-size: 1.5rem; /* 24px */
    }
}

/* Escritorios (1024px en adelante) */
@media (min-width: 64rem) {
    .grid-row-0[b-mueridjel5],
    .grid-row-1[b-mueridjel5] {
        /*grid-template-columns: repeat(4, 1fr);*/
        gap: 1rem; /* 16px */
    }

    .form-card[b-mueridjel5] {
        padding: 1.25rem; /* 20px */
    }

    .result-card[b-mueridjel5] {
        padding: 1rem; /* 16px */
    }

    .btn[b-mueridjel5] {
        font-size: 0.875rem; /* 14px */
        padding: 0 0.5rem; /* 0 8px */
    }

    .verduleria-label[b-mueridjel5] {
        font-size: 1.625rem; /* 26px */
    }
}

.producto-label[b-mueridjel5] {
    color: white;
    font-size: 0.875rem; /* 16px */
    margin-right: 1.775rem; /* 20px */
}

.igtf-label[b-mueridjel5] {
    color: #ff940c;
    font-size: 1rem; /* 16px */
    margin-left: 2.2rem;
}

}

/* .form-label {
    color: white;
    font-size: 1rem; // 16px 
} */

.title[b-mueridjel5] {
    text-align: center;
    font-size: 1.375rem; /* 22px */
    font-weight: bold;
}

/* ===== ICONS ===== */
.lista-icon[b-mueridjel5] {
    height: 1.8rem; /* 40px */
    width: 1.8rem; /* 40px */
    color: #ffc300; /* Make SVG white for dark backgrounds */
}

/* ===== HELP SECTION (ACORDEÓN) ===== */
/* Fila del título con botón de ayuda */
.title-row[b-mueridjel5] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

/* Botón compacto de ayuda */
.help-toggle-btn-compact[b-mueridjel5] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    background: linear-gradient(135deg, #0066cc, #001f3f);
    border: 2px solid #00c7b7;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.3);
    flex-shrink: 0;
}

    .help-toggle-btn-compact:hover[b-mueridjel5] {
        background: linear-gradient(135deg, #0077dd, #002a50);
        border-color: #00d4c4;
        box-shadow: 0 4px 12px rgba(0, 199, 183, 0.4);
        transform: scale(1.1);
    }

    .help-toggle-btn-compact:active[b-mueridjel5] {
        transform: scale(0.95);
        box-shadow: 0 2px 6px rgba(0, 102, 204, 0.2);
    }

.help-icon[b-mueridjel5] {
    font-size: 0.8rem;
}

/* Contenido de ayuda con mejor contraste */
.help-content[b-mueridjel5] {
    margin: 0.5rem 0.5rem 1rem 0.5rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, #001f3f, #0a0a0a);
    border: 2px solid #0066cc;
    border-radius: 12px;
    color: #ffffff;
    animation: slideDown-b-mueridjel5 0.3s ease-out;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.2);
}

@keyframes slideDown-b-mueridjel5 {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.help-content h4[b-mueridjel5] {
    color: #18f489;
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0.75rem 0 0.5rem 0;
    text-shadow: 0 0 8px rgba(24, 244, 137, 0.3);
}

    .help-content h4:first-child[b-mueridjel5] {
        margin-top: 0;
    }

.help-content p[b-mueridjel5] {
    color: #f8f9fa;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 0.75rem 0;
}

    .help-content p:last-child[b-mueridjel5] {
        margin-bottom: 0;
    }

.help-content strong[b-mueridjel5] {
    color: #00c7b7;
    font-weight: 700;
}

.title[b-mueridjel5] {
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0;
}
/* /Features/Inventario/ViveresPage.razor.rz.scp.css */
/* ===== CSS VARIABLES - Paleta de Colores Shmenkare.Soft ===== */
:root[b-4i7bfnh0vi] {
    --primary-color: #0066cc;
    --secondary-color: #001f3f;
    --accent-color: #00c7b7;
    --bg-color: #f8f9fa;
    --highlight-color: #0066cc;
    --border-radius: 12px;
    --transition-speed: 0.25s;
    --card-bg: #ffffff;
    --text-color: #1a1a1b;
    --border-color: #e2e8f0;
}

.dark-mode[b-4i7bfnh0vi],
html[data-bs-theme="dark"][b-4i7bfnh0vi],
body[data-bs-theme="dark"][b-4i7bfnh0vi] {
    --bg-color: #0f172a;
    --card-bg: #1e293b;
    --highlight-color: #00c7b7;
    --text-color: #f8f9fa;
    --border-color: #334155;
}

/* ===== ANIMATIONS ===== */
@keyframes slideInFromRight-b-4i7bfnh0vi {
    0% {
        transform: translateX(500px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ===== LAYOUT ===== */
.root-grid[b-4i7bfnh0vi] {
    display: flex;
    flex-direction: column;
    gap: 0.2rem; /* 10px */
    overflow-y: auto;
    height: 100%;
    margin: 0 -1.5rem;
    padding: 0.5rem; /* 8px */
    overflow-x: hidden;
}

    .root-grid > *[b-4i7bfnh0vi] {
        opacity: 0;
    }

    .root-grid.loaded > *[b-4i7bfnh0vi] {
        animation: slideInFromRight-b-4i7bfnh0vi 400ms cubic-bezier(0.33, 1, 0.68, 1) forwards;
    }

        /* Stagger the animation for children */
        .root-grid.loaded > *:nth-child(2)[b-4i7bfnh0vi] {
            animation-delay: 50ms;
        }

        .root-grid.loaded > *:nth-child(3)[b-4i7bfnh0vi] {
            animation-delay: 100ms;
        }

        .root-grid.loaded > *:nth-child(4)[b-4i7bfnh0vi] {
            animation-delay: 150ms;
        }

        .root-grid.loaded > *:nth-child(5)[b-4i7bfnh0vi] {
            animation-delay: 200ms;
        }

        .root-grid.loaded > *:nth-child(6)[b-4i7bfnh0vi] {
            animation-delay: 250ms;
        }

        .root-grid.loaded > *:nth-child(7)[b-4i7bfnh0vi] {
            animation-delay: 300ms;
        }

        .root-grid.loaded > *:nth-child(8)[b-4i7bfnh0vi] {
            animation-delay: 350ms;
        }

        .root-grid.loaded > *:nth-child(9)[b-4i7bfnh0vi] {
            animation-delay: 400ms;
        }

        .root-grid.loaded > *:nth-child(10)[b-4i7bfnh0vi] {
            animation-delay: 450ms;
        }

/* ===== UTILITY CLASSES ===== */
.vstack[b-4i7bfnh0vi] {
    display: flex;
    flex-direction: column;
}

.hstack[b-4i7bfnh0vi] {
    display: flex;
    flex-direction: row;
}

.spacing-5[b-4i7bfnh0vi] {
    gap: 0.3125rem; /* 5px */
}

.spacing-10[b-4i7bfnh0vi] {
    gap: 0.625rem; /* 10px */
}

.spacing-20[b-4i7bfnh0vi] {
    gap: 1.25rem; /* 20px */
}

.h-center[b-4i7bfnh0vi] {
    margin-left: auto;
    margin-right: auto;
}

/* ===== GRID LAYOUT ===== */
.grid-row-0[b-4i7bfnh0vi],
.grid-row-1[b-4i7bfnh0vi] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem; /* 8px */
}

.grid-row-3[b-4i7bfnh0vi] {
    margin-top: 0;
}

.grid-row-4[b-4i7bfnh0vi] {
    margin-top: 0;
}

.grid-row-5[b-4i7bfnh0vi] {
    margin-top: 0.3125rem; /* 5px */
}

/* ===== BANNER ===== */
/*.ad-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    color: #94a3b8;
    border: 0.0625rem dashed #334155;*/ /* 1px */
/*border-radius: 0.625rem;*/ /* 10px */
/*min-height: 3.125rem;*/ /* 50px */
/*}*/

/* ===== CARD STYLES ===== */
.card[b-4i7bfnh0vi] {
    padding: 1.25rem;
    border-radius: var(--border-radius);
    background: linear-gradient( 135deg, var(--secondary-color), #0a0a0a ) !important;
    border: 1px solid var(--primary-color) !important;
    width: 100%;
    transition: all var(--transition-speed) ease;
    color: white !important;
}

    .card:hover[b-4i7bfnh0vi] {
        border-color: var(--accent-color) !important;
        box-shadow: 0 4px 12px rgba(0, 102, 204, 0.4);
    }

/* Asegurar que las tarjetas mantengan colores azules en modo oscuro */
.dark-theme .card[b-4i7bfnh0vi],
html[data-bs-theme="dark"] .card[b-4i7bfnh0vi],
.page.dark-theme .card[b-4i7bfnh0vi],
[data-bs-theme="dark"] .card[b-4i7bfnh0vi] {
    background: linear-gradient(135deg, #001f3f, #121212) !important;
    border-color: #0066cc !important;
    color: white !important;
}

/* Forzar colores en todos los estados del modo oscuro */
body.dark-theme .card[b-4i7bfnh0vi],
body[data-bs-theme="dark"] .card[b-4i7bfnh0vi] {
    background: linear-gradient(135deg, #001f3f, #121212) !important;
    border-color: #0066cc !important;
}

/* Override de Bootstrap card en modo oscuro */
.dark-theme .card.card[b-4i7bfnh0vi],
[data-bs-theme="dark"] .card.card[b-4i7bfnh0vi] {
    background: linear-gradient(135deg, #001f3f, #121212) !important;
    border: 0.12rem solid #0066cc !important;
}

.result-card[b-4i7bfnh0vi] {
    padding: 0.625rem; /* 10px */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.orange-border[b-4i7bfnh0vi] {
    /* border: 0.0625rem solid #f97316; 1px */
    border: 0.12rem solid #f78534 !important;
}

/* Mantener borde naranja en modo oscuro */
.dark-theme .orange-border[b-4i7bfnh0vi],
html[data-bs-theme="dark"] .orange-border[b-4i7bfnh0vi],
.page.dark-theme .orange-border[b-4i7bfnh0vi],
[data-bs-theme="dark"] .orange-border[b-4i7bfnh0vi],
body.dark-theme .orange-border[b-4i7bfnh0vi],
body[data-bs-theme="dark"] .orange-border[b-4i7bfnh0vi] {
    border: 0.12rem solid #f78534 !important;
}

.form-card[b-4i7bfnh0vi] {
    padding: 0.9375rem; /* 15px */
    border-radius: 0.9375rem; /* 15px */
    width: 100%;
}

/* ===== FORM ELEMENTS ===== */
.input-border[b-4i7bfnh0vi] {
    border-radius: 0.625rem; /* 10px */
    border: 0.0625rem solid #334155; /* 1px */
    /* background-color: #0f172a; */
    background-color: #0f1420;
}

.entry[b-4i7bfnh0vi] {
    background-color: transparent;
    border: none;
    color: white;
    padding: 0 0.625rem; /* 0 10px */
    height: 2.5rem; /* 40px */
    width: 100%;
}

    .entry:focus[b-4i7bfnh0vi] {
        outline: none;
        border-color: #4f85e5;
    }

    .entry[b-4i7bfnh0vi]::placeholder {
        color: #64748b;
    }

/* ===== BUTTONS ===== */
.button-grid[b-4i7bfnh0vi] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.3125rem; /* 5px */
}

.btn[b-4i7bfnh0vi] {
    font-weight: 800;
    font-size: 0.625rem; /* 10px */
    color: white;
    position: relative;
    transition: all var(--transition-speed) ease;
    border-radius: var(--border-radius);
    height: 2.8125rem; /* 45px */
    border: none;
    cursor: pointer;
    text-align: center;
    padding: 0 0.3125rem; /* 0 5px */
}

    .btn:hover[b-4i7bfnh0vi] {
        transform: translateY(-1px);
    }

    .btn:active[b-4i7bfnh0vi] {
        transform: translateY(1px);
    }

.primary-btn[b-4i7bfnh0vi] {
    background-color: #0066cc;
    box-shadow: 0 2px 4px rgba(0, 102, 204, 0.3);
}

.orange-btn[b-4i7bfnh0vi] {
    background-color: #f97316;
    box-shadow: 0 2px 4px rgba(249, 115, 22, 0.3);
}

.green-btn[b-4i7bfnh0vi] {
    background-color: #10b981;
    box-shadow: 0 2px 4px rgba(16, 185, 129, 0.3);
}

.red-btn[b-4i7bfnh0vi] {
    background-color: #f43f5e;
    box-shadow: 0 2px 4px rgba(244, 63, 94, 0.3);
}

.image-button[b-4i7bfnh0vi] {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

    .image-button img[b-4i7bfnh0vi] {
        display: block;
    }

/* ===== SWITCH TOGGLE ===== */
.switch[b-4i7bfnh0vi] {
    position: relative;
    display: inline-block;
    width: 2.5rem; /* 40px */
    height: 1.25rem; /* 20px */
    margin: 0;
    vertical-align: middle;
}

    .switch input[b-4i7bfnh0vi] {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider[b-4i7bfnh0vi] {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 1.25rem; /* 20px */
}

    .slider[b-4i7bfnh0vi]:before {
        position: absolute;
        content: "";
        height: 1rem; /* 16px */
        width: 1rem; /* 16px */
        left: 0.125rem; /* 2px */
        bottom: 0.125rem; /* 2px */
        background-color: white;
        transition: 0.4s;
        border-radius: 50%;
    }

.switch input:checked + .slider[b-4i7bfnh0vi] {
    background-color: #4f85e5;
}

    .switch input:checked + .slider[b-4i7bfnh0vi]:before {
        transform: translateX(20px);
    }

/* ===== TYPOGRAPHY ===== */
.info-label[b-4i7bfnh0vi] {
    color: #cbd5e1;
    font-size: 0.875rem; /* 14px */
}

.total-value[b-4i7bfnh0vi] {
    color: white;
    font-size: 1.3rem; /* 22px */
    font-weight: bold;
}

.disponible-value[b-4i7bfnh0vi] {
    color: #ffc300;
    font-size: 1.3rem; /* 22px */
    font-weight: bold;
}

.viveres-label[b-4i7bfnh0vi] {
    color: #18f489;
    font-size: 1.3rem; /* 22px */
    font-weight: bold;
    text-shadow: 0 0 10px rgba(24, 244, 137, 0.5);
}

.descontar-label[b-4i7bfnh0vi] {
    color: white;
    font-size: 0.875rem; /* 16px */
    margin-right: 1.775rem; /* 30px */
}

/* ===== RESPONSIVE DESIGN ===== */
/* Tablets (768px en adelante) */
@media (min-width: 48rem) {
    .grid-row-0[b-4i7bfnh0vi],
    .grid-row-1[b-4i7bfnh0vi] {
        /*  grid-template-columns: repeat(2, 1fr);*/
        gap: 0.5rem; /* 8px */
    }

    .card[b-4i7bfnh0vi] {
        padding: 0.625rem; /* 10px */
    }

    .button-grid[b-4i7bfnh0vi] {
        /*  grid-template-columns: repeat(4, 1fr);*/
        gap: 0.5rem; /* 8px */
    }

    .btn[b-4i7bfnh0vi] {
        font-size: 0.75rem; /* 12px */
        height: 3rem; /* 48px */
    }

    .verduleria-label[b-4i7bfnh0vi] {
        font-size: 1.5rem;
    }
}

/* Escritorios (1024px en adelante) */
@media (min-width: 64rem) {
    .grid-row-0[b-4i7bfnh0vi],
    .grid-row-1[b-4i7bfnh0vi] {
        /* grid-template-columns: repeat(4, 1fr);*/
        gap: 1rem; /* 16px */
    }

    .form-card[b-4i7bfnh0vi] {
        padding: 1.25rem; /* 20px */
    }

    .result-card[b-4i7bfnh0vi] {
        padding: 1rem; /* 16px */
    }

    .btn[b-4i7bfnh0vi] {
        font-size: 0.875rem; /* 14px */
        padding: 0 0.5rem; /* 0 8px */
    }

    .verduleria-label[b-4i7bfnh0vi] {
        font-size: 1.625rem;
    }
}

.igtf-label[b-4i7bfnh0vi] {
    color: #ff940c;
    font-size: 1rem; /* 16px */
    margin-left: 2.5rem;
}

/* .form-label {
    color: white;
    font-size: 0.775rem; /
} */

.title[b-4i7bfnh0vi] {
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0;
}

/* ===== ICONS ===== */
.lista-icon[b-4i7bfnh0vi] {
    height: 1.8rem; /* 40px */
    width: 1.8rem; /* 40px */
    color: #ffc300; /* Make SVG white for dark backgrounds */
}

/* ===== HELP SECTION (ACORDEÓN) ===== */
/* Fila del título con botón de ayuda */
.title-row[b-4i7bfnh0vi] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

/* Botón compacto de ayuda */
.help-toggle-btn-compact[b-4i7bfnh0vi] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    background: linear-gradient(135deg, #0066cc, #001f3f);
    border: 2px solid #00c7b7;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.3);
    flex-shrink: 0;
}

    .help-toggle-btn-compact:hover[b-4i7bfnh0vi] {
        background: linear-gradient(135deg, #0077dd, #002a50);
        border-color: #00d4c4;
        box-shadow: 0 4px 12px rgba(0, 199, 183, 0.4);
        transform: scale(1.1);
    }

    .help-toggle-btn-compact:active[b-4i7bfnh0vi] {
        transform: scale(0.95);
        box-shadow: 0 2px 6px rgba(0, 102, 204, 0.2);
    }

.help-icon[b-4i7bfnh0vi] {
    font-size: 0.8rem;
}

/* Contenido de ayuda con mejor contraste */
.help-content[b-4i7bfnh0vi] {
    margin: 0.5rem 0.5rem 1rem 0.5rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, #001f3f, #0a0a0a);
    border: 2px solid #0066cc;
    border-radius: 12px;
    color: #ffffff;
    animation: slideDown-b-4i7bfnh0vi 0.3s ease-out;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.2);
}

@keyframes slideDown-b-4i7bfnh0vi {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.help-content h4[b-4i7bfnh0vi] {
    color: #18f489;
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0.75rem 0 0.5rem 0;
    text-shadow: 0 0 8px rgba(24, 244, 137, 0.3);
}

    .help-content h4:first-child[b-4i7bfnh0vi] {
        margin-top: 0;
    }

.help-content p[b-4i7bfnh0vi] {
    color: #f8f9fa;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 0.75rem 0;
}

    .help-content p:last-child[b-4i7bfnh0vi] {
        margin-bottom: 0;
    }

.help-content strong[b-4i7bfnh0vi] {
    color: #00c7b7;
    font-weight: 700;
}
/* /Features/Listas/ListaNumeradaComprasPage.razor.rz.scp.css */
/* ===== CSS VARIABLES - Paleta de Colores Shmenkare.Soft ===== */
:root[b-mirxyeaqj9] {
    --primary-color: #0066cc;
    --secondary-color: #001f3f;
    --accent-color: #00c7b7;
    --bg-color: #f8f9fa;
    --highlight-color: #0066cc;
    --border-radius: 12px;
    --transition-speed: 0.25s;
    --card-bg: #ffffff;
    --text-color: #1a1a1b;
    --border-color: #e2e8f0;
}

.dark-mode[b-mirxyeaqj9], html[data-bs-theme="dark"][b-mirxyeaqj9], body[data-bs-theme="dark"][b-mirxyeaqj9] {
    --bg-color: #0f172a;
    --card-bg: #1e293b;
    --highlight-color: #00c7b7;
    --text-color: #f8f9fa;
    --border-color: #334155;
}

/* ===== ANIMATIONS ===== */
@keyframes slideInFromRight-b-mirxyeaqj9 {
    0% {
        transform: translateX(500px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ===== LAYOUT ===== */
.root-grid[b-mirxyeaqj9] {
    display: flex;
    flex-direction: column;
    gap: 0.2rem; /* 10px */
    overflow-y: auto;
    height: 100%;
    margin: 0 -1.5rem;
    padding: 0.5rem; /* 8px */
    overflow-x: hidden;
}

    .root-grid > *[b-mirxyeaqj9] {
        opacity: 0;
    }

    .root-grid.loaded > *[b-mirxyeaqj9] {
        animation: slideInFromRight-b-mirxyeaqj9 400ms cubic-bezier(0.33, 1, 0.68, 1) forwards;
    }

        /* Stagger the animation for children */
        .root-grid.loaded > *:nth-child(2)[b-mirxyeaqj9] {
            animation-delay: 50ms;
        }

        .root-grid.loaded > *:nth-child(3)[b-mirxyeaqj9] {
            animation-delay: 100ms;
        }

        .root-grid.loaded > *:nth-child(4)[b-mirxyeaqj9] {
            animation-delay: 150ms;
        }

        .root-grid.loaded > *:nth-child(5)[b-mirxyeaqj9] {
            animation-delay: 200ms;
        }

        .root-grid.loaded > *:nth-child(6)[b-mirxyeaqj9] {
            animation-delay: 250ms;
        }

        .root-grid.loaded > *:nth-child(7)[b-mirxyeaqj9] {
            animation-delay: 300ms;
        }

        .root-grid.loaded > *:nth-child(8)[b-mirxyeaqj9] {
            animation-delay: 350ms;
        }

        .root-grid.loaded > *:nth-child(9)[b-mirxyeaqj9] {
            animation-delay: 400ms;
        }

        .root-grid.loaded > *:nth-child(10)[b-mirxyeaqj9] {
            animation-delay: 450ms;
        }

/* ===== BANNER ===== */
/*.ad-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    color: #94a3b8;
    border: 0.0625rem dashed #334155;*/ /* 1px */
/*border-radius: 0.625rem;*/ /* 10px */
/*min-height: 3.125rem;*/ /* 50px */
/*}*/

/* ===== INPUT SECTION ===== */
.input-section[b-mirxyeaqj9] {
    padding: 1.25rem; /* 20px */
    border-radius: var(--border-radius);
    background: linear-gradient(135deg, var(--secondary-color), #0a0a0a) !important;
    border: 1px solid var(--primary-color) !important;
    transition: all var(--transition-speed) ease;
}

    .input-section:hover[b-mirxyeaqj9] {
        border-color: var(--accent-color) !important;
        box-shadow: 0 4px 12px rgba(0, 102, 204, 0.2);
    }

.dark-theme .input-section[b-mirxyeaqj9],
html[data-bs-theme="dark"] .input-section[b-mirxyeaqj9],
.page.dark-theme .input-section[b-mirxyeaqj9],
[data-bs-theme="dark"] .input-section[b-mirxyeaqj9],
body.dark-theme .input-section[b-mirxyeaqj9],
body[data-bs-theme="dark"] .input-section[b-mirxyeaqj9] {
    background: linear-gradient(135deg, var(--secondary-color), #0a0a0a) !important;
    border-color: var(--primary-color) !important;
}

.input-group[b-mirxyeaqj9] {
    display: flex;
    gap: 0.625rem; /* 10px */
    margin-bottom: 0.625rem; /* 10px */
    width: 100%;
}

.new-item-entry[b-mirxyeaqj9] {
    flex: 1;
    padding: 0.5rem; /* 8px */
    /* border: 0.0625rem solid #4f85e5; 1px */
    border: 0.12rem solid #4e83e0;
    border-radius: 0.3125rem; /* 5px */
    background-color: #2d3748;
    color: white;
    width: 50%;
}

    .new-item-entry:focus[b-mirxyeaqj9] {
        outline: none;
        border-color: var(--accent-color);
        box-shadow: 0 0 0 2px rgba(0, 199, 183, 0.3);
    }

/* ===== BUTTONS ===== */

.add-button[b-mirxyeaqj9] {
    background-color: #10b981;
    border-radius: 1.875rem; /* 30px */
    color: white;
    font-size: 0.875rem; /* 14px */
    font-weight: bold;
    padding: 0.5rem 0.9375rem; /* 8px 15px */
    border: none;
    cursor: pointer;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    user-select: none;
    transition: all 0.1s ease;
    transform: translateY(0);
    box-shadow: 0 3px 0 rgba(0, 0, 0, 0.2);
}

    .add-button:hover[b-mirxyeaqj9] {
        transform: translateY(-1px);
        box-shadow: 0 4px 8px rgba(16, 185, 129, 0.4);
    }

    .add-button:active[b-mirxyeaqj9] {
        transform: translateY(1px);
        background-color: #0d9f6e;
    }

.list-section[b-mirxyeaqj9] {
    display: grid;
    grid-template-columns: 1fr; /* Corresponds to Grid ColumnDefinitions="*" */
    grid-template-rows: auto auto; /* Corresponds to Grid RowDefinitions="Auto,Auto" */
    gap: 0.2rem; /* 15px - Increased gap between list cards */
    margin-top: 0.2rem; /* 15px - Added margin to separate from input section */
}

.list-card[b-mirxyeaqj9] {
    padding: 1.25rem; /* 20px */
    border-radius: var(--border-radius);
    background: linear-gradient(135deg, var(--secondary-color), #0a0a0a) !important;
    border: 1px solid var(--primary-color) !important;
    max-width: 100%;
    box-sizing: border-box;
    transition: all var(--transition-speed) ease;
}

    .list-card:hover[b-mirxyeaqj9] {
        border-color: var(--accent-color) !important;
        box-shadow: 0 4px 12px rgba(0, 102, 204, 0.2);
    }

.dark-theme .list-card[b-mirxyeaqj9],
html[data-bs-theme="dark"] .list-card[b-mirxyeaqj9],
.page.dark-theme .list-card[b-mirxyeaqj9],
[data-bs-theme="dark"] .list-card[b-mirxyeaqj9],
body.dark-theme .list-card[b-mirxyeaqj9],
body[data-bs-theme="dark"] .list-card[b-mirxyeaqj9] {
    background: linear-gradient(135deg, var(--secondary-color), #0a0a0a) !important;
    border-color: var(--primary-color) !important;
}

.list-title[b-mirxyeaqj9] {
    font-weight: bold;
    color: white;
    margin-bottom: 0.625rem; /* 10px - Add some space below title */
}

.collection-view[b-mirxyeaqj9] {
    display: flex;
    flex-direction: column;
    gap: 0.625rem; /* 2px - Corresponds to CollectionView.ItemsLayout ItemSpacing */
}

.list-item[b-mirxyeaqj9] {
    display: grid;
    grid-template-columns: auto auto 1fr auto; /* Corresponds to Grid ColumnDefinitions="Auto,Auto,*,Auto" */
    align-items: center;
    padding: 0.125rem; /* 2px - Corresponds to Grid Padding */
}

.bullet[b-mirxyeaqj9] {
    margin-right: 0.625rem; /* 10px - Aumentado el espacio a la derecha de la viñeta */
    margin-left: 0.125rem; /* 2px */
    font-size: 1.125rem; /* 18px */
    color: white;
}

.item-checkbox[b-mirxyeaqj9] {
    margin: 0 2px; /* Corresponds to CheckBox Margin */
    /* Custom styling for checkbox if needed */
}

.item-text[b-mirxyeaqj9] {
    color: white;
    margin-left: 0.625rem; /* 10px - Espacio entre el checkbox y el texto */
    /* No specific font size in XAML, use default */
}

.completed-text[b-mirxyeaqj9] {
    color: grey;
    text-decoration: line-through;
}

.delete-button[b-mirxyeaqj9] {
    background-color: transparent;
    font-size: 0.75rem; /* 12px */
    height: 1.75rem; /* 28px */
    position: relative;
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    user-select: none;
    transition: all 0.1s ease;
    transform: translateY(0);
    width: 1.75rem; /* 28px */
    color: darkgray;
    border: none;
    cursor: pointer;
    justify-self: end; /* Aligns to end in grid column */
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.1);
}

    .delete-button:hover[b-mirxyeaqj9] {
        color: #f43f5e;
        transform: translateY(-1px);
    }
    .delete-button:active[b-mirxyeaqj9] {
        transform: translateY(1px);
        transition: all 0.05s ease;
    }

.no-items-message[b-mirxyeaqj9] {
    color: lightgray;
    text-align: center;
    margin-top: 0.625rem; /* 10px */
}

/*.grid-row-1 {
    gap: 0.2rem;
}*/

.grid-row-2[b-mirxyeaqj9] {
    align-content: center;
    justify-content: center;
    display: grid;
}

.title[b-mirxyeaqj9] {
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0;
}

.clear-list-button[b-mirxyeaqj9] {
    background-color: #f43f5e;
    color: white;
    font-size: 0.875rem; /*14px */
    font-weight: bold;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 1.875rem; /* 30px */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    user-select: none;
    margin-top: 1rem;
    width: 12rem; /* 32px */
    height: 2.8125rem; /* 45px */
    position: relative;
    transition: all 0.1s ease;
    transform: translateY(0);
    box-shadow: 0 3px 0 rgba(0, 0, 0, 0.2);
}

    .clear-list-button:hover[b-mirxyeaqj9] {
        background-color: #e11d48;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(244, 63, 94, 0.4);
    }

    .clear-list-button:active[b-mirxyeaqj9] {
        transform: translateY(1px);
        transition: all 0.05s ease;
    }

/* ===== TYPOGRAPHY ===== */
/*.title {
    text-align: center;
    font-size: 1.375rem;*/ /* 22px */
/*font-weight: bold;
    color: white;
    margin-bottom: 0.9375rem;*/ /* 15px */
/*}*/

/* ===== RESPONSIVE DESIGN ===== */
@media (min-width: 768px) {
    /* .list-section {
    grid-template-columns: repeat(2, 1fr);
  } */
}

@media (min-width: 64rem) {
    /* 1024px */
    /* .list-section {
    grid-template-columns: repeat(3, 1fr);
  } */
}
/* ===== ICONS ===== */
.help-icon[b-mirxyeaqj9] {
    font-size: 0.8rem;
}

/* ===== HELP SECTION (ACORDEÓN) ===== */
/* Fila del título con botón de ayuda */
.title-row[b-mirxyeaqj9] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

/* Botón compacto de ayuda */
.help-toggle-btn-compact[b-mirxyeaqj9] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    background: linear-gradient(135deg, #0066cc, #001f3f);
    border: 2px solid #00c7b7;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.3);
    flex-shrink: 0;
}

    .help-toggle-btn-compact:hover[b-mirxyeaqj9] {
        background: linear-gradient(135deg, #0077dd, #002a50);
        border-color: #00d4c4;
        box-shadow: 0 4px 12px rgba(0, 199, 183, 0.4);
        transform: scale(1.1);
    }

    .help-toggle-btn-compact:active[b-mirxyeaqj9] {
        transform: scale(0.95);
        box-shadow: 0 2px 6px rgba(0, 102, 204, 0.2);
    }

/* Contenido de ayuda con mejor contraste */
.help-content[b-mirxyeaqj9] {
    margin: 0.5rem 0.5rem 1rem 0.5rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, #001f3f, #0a0a0a);
    border: 2px solid #0066cc;
    border-radius: 12px;
    color: #ffffff;
    animation: slideDown-b-mirxyeaqj9 0.3s ease-out;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.2);
}

@keyframes slideDown-b-mirxyeaqj9 {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.help-content h4[b-mirxyeaqj9] {
    color: #18f489;
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0.75rem 0 0.5rem 0;
    text-shadow: 0 0 8px rgba(24, 244, 137, 0.3);
}

    .help-content h4:first-child[b-mirxyeaqj9] {
        margin-top: 0;
    }

.help-content p[b-mirxyeaqj9] {
    color: #f8f9fa;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 0.75rem 0;
}

    .help-content p:last-child[b-mirxyeaqj9] {
        margin-bottom: 0;
    }

.help-content strong[b-mirxyeaqj9] {
    color: #00c7b7;
    font-weight: 700;
}
/* /Features/Premium/PagoPremiumPage.razor.rz.scp.css */
/* ===== CSS VARIABLES - Paleta de Colores Shmenkare.Soft ===== */
:root[b-nzd5fxfdp7] {
  --primary-color: #0066cc;
  --secondary-color: #001f3f;
  --accent-color: #00c7b7;
  --bg-color: #f8f9fa;
  --highlight-color: #0066cc;
  --border-radius: 12px;
  --transition-speed: 0.25s;
  --card-bg: #ffffff;
  --text-color: #1a1a1b;
  --border-color: #e2e8f0;
  --brand-yellow: #ffc300;
  --neo-green: #18f489;
}

.dark-mode[b-nzd5fxfdp7],
html[data-bs-theme="dark"][b-nzd5fxfdp7],
body[data-bs-theme="dark"][b-nzd5fxfdp7] {
  --bg-color: #0f172a;
  --card-bg: #1e293b;
  --highlight-color: #00c7b7;
  --text-color: #f8f9fa;
  --border-color: #334155;
}

/* ===== ANIMATIONS ===== */
@keyframes slideInFromRight-b-nzd5fxfdp7 {
  0% {
    transform: translateX(500px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* ===== LAYOUT - RESTORED TO ORIGINAL DIMENSIONS & BACKGROUND ===== */
/*.root-grid {
    background: linear-gradient(135deg, var(--secondary-color), #0a0a0a) !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    overflow: hidden !important;
    padding: 0.5rem !important;
    border-radius: 1.25rem !important;
    box-sizing: border-box !important;
    margin: 0 -1.5rem !important;*/
/* Standard margin for full width in MainLayout */
/*min-height: calc(100vh - 2rem) !important;
}*/

.root-grid[b-nzd5fxfdp7] {
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    #0a0a0a
  ) !important;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
  height: 100%;
  margin: 0 -1rem;
  overflow-x: hidden;
  padding: 0.5rem;
  border-radius: 1.25rem;
  box-sizing: border-box !important;
}

.root-grid[b-nzd5fxfdp7] {
  opacity: 0;
}

.root-grid.loaded[b-nzd5fxfdp7] {
  animation: slideInFromRight-b-nzd5fxfdp7 400ms cubic-bezier(0.33, 1, 0.68, 1) forwards !important;
}

.content-stack[b-nzd5fxfdp7] {
  border-radius: 1.25rem;
  display: flex;
  flex-direction: column;
  max-width: 25.5rem; /* Original max-width */
  margin: 0 auto;
}

/* ===== TYPOGRAPHY ===== */

.title[b-nzd5fxfdp7] {
  text-align: center !important;
  font-size: 1.2rem !important;
  font-weight: bold !important;
  color: white !important;
  margin: 0 !important;
}

.header-label[b-nzd5fxfdp7] {
  /*color: var(--brand-yellow) !important;*/
  color: #ffc300;
  font-size: 1rem;
  font-weight: bold !important;
  text-align: center !important;
  margin: 0.625rem 0 !important;
}

.subheader-label[b-nzd5fxfdp7] {
  color: #fff !important;
  font-size: 1rem !important;
  text-align: center !important;
  font-weight: bold !important;
  margin: 0.625rem 0 !important;
}

.benefits-list[b-nzd5fxfdp7] {
  color: #b5b5b5 !important;
  font-size: 0.8rem !important;
  line-height: 1.6 !important;
  padding-left: 1.25rem !important;
  margin: 0.125rem 0 !important;
}

/* ===== PREMIUM BANNER ===== */
.premium-banner[b-nzd5fxfdp7] {
  border: 0.12rem solid var(--primary-color) !important;
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    #0a0a0a
  ) !important;
  border-radius: 1.5rem !important;
  padding: 1.75rem 1.125rem !important;
  margin: 1.25rem 0 !important;
  width: 100% !important;
  height: auto !important;
}

.premium-banner-content[b-nzd5fxfdp7] {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.75rem !important;
  align-items: center !important;
  text-align: center !important;
}

.premium-title[b-nzd5fxfdp7] {
  color: #ffc300;
  font-size: 1.875rem !important;
  font-weight: bold !important;
  margin: 0 !important;
}

.premium-plan-active[b-nzd5fxfdp7] {
  color: #18f489;
  font-size: 1.375rem !important;
  font-weight: bold !important;
  margin: 0.3125rem 0 !important;
  text-shadow: 0 0 10px rgba(24, 244, 137, 0.5) !important;
}

.separator[b-nzd5fxfdp7] {
  height: 0.125rem !important;
  background-color: rgba(255, 255, 255, 0.2) !important;
  width: 100% !important;
  margin: 0.625rem 0 !important;
  border: none !important;
}

.premium-benefits-summary[b-nzd5fxfdp7] {
  color: white !important;
  font-size: 1.125rem !important;
  margin: 0.625rem 0 !important;
}

/* ===== PLAN OPTIONS ===== */
.plan-selection-header[b-nzd5fxfdp7] {
  /*color: var(--neo-green) !important;*/ /* Verde Neón */
  color: #18f489;
  font-weight: bold !important;
  font-size: 1.4rem !important;
  margin: 1rem 0 0.325rem !important;
  text-align: center !important;
  text-shadow: 0 0 15px rgba(24, 244, 137, 0.6) !important; /* Efecto Luminiscente */
}

.plan-options[b-nzd5fxfdp7] {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.6375rem !important;
  margin: 0.5375rem 0 !important;
}

.radio-option[b-nzd5fxfdp7] {
  display: flex !important;
  align-items: center !important;
  gap: 0.625rem !important;
  padding: 0.625rem !important;
  border-radius: 0.5rem !important;
  background-color: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid transparent !important;
  transition: all var(--transition-speed) ease !important;
}

.radio-option:hover[b-nzd5fxfdp7] {
  background-color: rgba(255, 255, 255, 0.1) !important;
  border-color: var(--accent-color) !important;
}

.radio-option label[b-nzd5fxfdp7] {
  font-size: 1rem !important;
  color: white !important;
  cursor: pointer !important;
  flex-grow: 1 !important;
}

/* ===== BUTTONS ===== */
.btn-proceder-pago[b-nzd5fxfdp7] {
  /*background-color: var(--neo-green) !important;*/ /* Verde Neón */
  /*color: #000 !important;*/ /* Texto oscuro para contraste */
  background-color: #18f489;
  color: white;
  font-weight: bold !important;
  border: none !important;
  border-radius: 1.875rem !important;
  cursor: pointer !important;
  text-align: center !important;
  font-size: 1rem !important;
  height: 2.8125rem !important;
  width: 100% !important;
  box-shadow: 0 0 15px rgba(24, 244, 137, 0.4) !important;
  transition: all 0.2s ease !important;
}

.btn-proceder-pago:hover[b-nzd5fxfdp7] {
  background-color: #15d678 !important;
  box-shadow: 0 0 20px rgba(24, 244, 137, 0.6) !important;
  transform: translateY(-1px) !important;
}

.btn-proceder-pago:active[b-nzd5fxfdp7] {
  transform: translateY(1px) !important;
}

/* ===== RECOVER PURCHASE SECTION ===== */
.recover-section[b-nzd5fxfdp7] {
  margin-top: 1.25rem !important;
  text-align: center !important;
}

.recover-section p[b-nzd5fxfdp7] {
  font-size: 0.9rem !important;
  color: #adb5bd !important;
  margin-bottom: 0.625rem !important;
}

.btn-recuperar[b-nzd5fxfdp7] {
  background: transparent !important;
  border: 2px solid #18f489 !important;
  /*  color: var(--primary-color) !important;*/
  color: #18f489;
  padding: 0.5rem 1rem !important;
  border-radius: 1.25rem !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: all var(--transition-speed) ease !important;
  font-size: 0.9rem !important;
}

.btn-recuperar:hover[b-nzd5fxfdp7] {
  background-color: var(--primary-color) !important;
  color: white !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.4);
}

.btn-recuperar:active[b-nzd5fxfdp7] {
  transform: translateY(1px);
}

/* ===== PLAN DETAILS ===== */
.precio-plan-label[b-nzd5fxfdp7] {
  color: white !important;
  font-size: 1rem !important;
  text-align: center !important;
  margin: 0.9375rem 0 0.3125rem !important;
  font-weight: bold !important;
}

.descripcion-plan-label[b-nzd5fxfdp7] {
  color: #b5b5b5 !important;
  font-size: 0.875rem !important;
  text-align: center !important;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (min-width: 48rem) {
  .plan-options[b-nzd5fxfdp7] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
/* /Features/Sistema/AcercaDe.razor.rz.scp.css */
/* ===== CSS VARIABLES - Paleta de Colores Shmenkare.Soft ===== */
:root[b-0izaqkzdch] {
  --primary-color: #0066cc;
  --secondary-color: #001f3f;
  --accent-color: #00c7b7;
  --bg-color: #f8f9fa;
  --highlight-color: #0066cc;
  --border-radius: 12px;
  --transition-speed: 0.25s;
  --card-bg: #ffffff;
  --text-color: #1a1a1b;
  --border-color: #e2e8f0;
  --icon-color: #0066cc; /* High contrast blue for light mode */
}

.dark-mode[b-0izaqkzdch],
html[data-bs-theme="dark"][b-0izaqkzdch],
body[data-bs-theme="dark"][b-0izaqkzdch] {
  --bg-color: #0f172a;
  --card-bg: #1e293b;
  --highlight-color: #00c7b7;
  --text-color: #f8f9fa;
  --border-color: #334155;
  --icon-color: #00c7b7; /* High contrast cyan for dark mode */
}

/* ===== ANIMATIONS ===== */
@keyframes slideInFromRight-b-0izaqkzdch {
  0% {
    transform: translateX(500px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* ===== LAYOUT ===== */
.root-grid[b-0izaqkzdch] {
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
  height: 100%;
  margin: 0 -1.5rem;
  padding: 0.5rem; /* 8px */
  overflow-x: hidden;
}

.root-grid .colpri[b-0izaqkzdch],
.root-grid .main-card[b-0izaqkzdch] {
  opacity: 0;
}

.root-grid.loaded .colpri[b-0izaqkzdch] {
  animation: slideInFromRight-b-0izaqkzdch 400ms cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

.root-grid.loaded .main-card[b-0izaqkzdch] {
  animation: slideInFromRight-b-0izaqkzdch 400ms cubic-bezier(0.33, 1, 0.68, 1) forwards;
  animation-delay: 50ms;
}

/* ===== TOP BAR ===== */
.top-bar-row[b-0izaqkzdch] {
  padding: 0 0.625rem; /* 10px */
}

/* ===== COLUMNS ===== */
.colpri[b-0izaqkzdch] {
  /* Intentionally left empty - for future use */
  margin: -0.2rem;
}

/* ===== ACTION GROUP ===== */
.action-group[b-0izaqkzdch] {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.2s;
}

.action-group:hover[b-0izaqkzdch] {
  opacity: 0.8;
}

/* ===== BUTTONS ===== */
.image-button[b-0izaqkzdch] {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  transition: all 0.1s ease;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  user-select: none;
  transform: translateY(0);
  position: relative;
}

.image-button:hover[b-0izaqkzdch] {
  transform: translateY(-1px);
}

.image-button:hover .top-icon[b-0izaqkzdch] {
  stroke: var(--accent-color);
}

.image-button:active[b-0izaqkzdch] {
  transform: translateY(1px);
  transition: all 0.05s ease;
}

.top-icon[b-0izaqkzdch] {
  height: 2.5rem; /* 45px */
  width: 2.5rem; /* 45px */
  transition:
    transform 0.2s,
    stroke 0.2s ease;
  /* Default stroke handles visibility if classes fail */
  stroke: var(--icon-color);
}

.icon-premium[b-0izaqkzdch] {
  stroke: #0055a5 !important; /* Neon Green */
}

.icon-rate[b-0izaqkzdch] {
  stroke: #ffc300 !important; /* Yellow */
}

.icon-share[b-0izaqkzdch] {
  stroke: #f43f5e !important; /* Red */
}

.top-icon:hover[b-0izaqkzdch] {
  transform: scale(1.05);
}

.action-label[b-0izaqkzdch] {
  font-size: 0.9375rem; /* 15px */
  font-weight: bold;
  margin-left: 0.5rem; /* 8px */
  transition: color 0.2s;
}

.action-label:hover[b-0izaqkzdch] {
  color: #94a3b8;
}

/* ===== CARD STYLES ===== */
.main-card[b-0izaqkzdch] {
  padding: 0;
  border-radius: var(--border-radius);
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    #0a0a0a
  ) !important;
  border: 1px solid var(--primary-color) !important;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all var(--transition-speed) ease;
}

.main-card:hover[b-0izaqkzdch] {
  transform: translateY(-0.125rem); /* -2px */
  border-color: var(--accent-color) !important;
  box-shadow: 0 0.375rem 0.75rem rgba(0, 102, 204, 0.2);
}

.dark-theme .main-card[b-0izaqkzdch],
html[data-bs-theme="dark"] .main-card[b-0izaqkzdch],
.page.dark-theme .main-card[b-0izaqkzdch],
[data-bs-theme="dark"] .main-card[b-0izaqkzdch],
body.dark-theme .main-card[b-0izaqkzdch],
body[data-bs-theme="dark"] .main-card[b-0izaqkzdch] {
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    #0a0a0a
  ) !important;
  border-color: var(--primary-color) !important;
}

.card-content[b-0izaqkzdch] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3125rem; /* 5px */
  padding: 1.25rem; /* 20px */
}

/* ===== LOGO & APP INFO ===== */
.logo-container[b-0izaqkzdch] {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1rem auto;
  width: 100%;
  text-align: center;
}

.logo-container img[b-0izaqkzdch] {
  display: inline-block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

.logo-container img:hover[b-0izaqkzdch] {
  transform: scale(1.03);
}

.app-info[b-0izaqkzdch] {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: -15px;
  width: 100%;
}

/* ===== TYPOGRAPHY ===== */
.app-title[b-0izaqkzdch] {
  color: #ffc300;
  font-size: 1.875rem; /* 30px */
  font-weight: bold;
  margin: 0.625rem 0; /* 10px */
  text-shadow: 0 0 15px rgba(255, 195, 0, 0.6);
}

.politica[b-0izaqkzdch] {
  color: #0066cc;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.politica:hover[b-0izaqkzdch] {
  color: #0055a5;
  text-decoration: underline;
}

.app-version[b-0izaqkzdch] {
  color: #94a3b8;
  font-size: 1rem; /* 16px */
  font-weight: bold;
  margin: 0.3125rem 0; /* 5px */
}

.update-status-msg[b-0izaqkzdch] {
    font-size: 0.9rem;
    font-weight: 700;
    margin-top: 5px;
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
}

.update-available[b-0izaqkzdch] {
    color: #ffffff !important;
    background-color: #f43f5e; /* ROJO */
    box-shadow: 0 0 10px rgba(244, 63, 94, 0.4);
}

.update-uptodate[b-0izaqkzdch] {
    color: #ffffff !important;
    background-color: #10b981; /* VERDE */
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
}

.update-checking[b-0izaqkzdch] {
    color: #94a3b8;
    font-style: italic;
}

.changelog-link[b-0izaqkzdch] {
  color: #21e6e1;
  font-size: 0.9375rem; /* 15px */
  text-decoration: none;
  cursor: pointer;
  margin: 0.3125rem 0; /* 5px */
  transition:
    color 0.2s,
    text-decoration 0.2s;
}

.changelog-link:hover[b-0izaqkzdch] {
  color: #38f7f2;
  text-decoration: underline;
}

.company-name[b-0izaqkzdch] {
  /* color: #21e6e1;*/
  color: #18f489;
  font-size: 1.125rem; /* 18px */
  font-weight: bold;
  margin: 0.625rem 0; /* 10px */
  text-shadow: 0 0 12px rgba(33, 230, 225, 0.6);
}

/* ===== CONTACT SECTION ===== */
.contact-info[b-0izaqkzdch] {
  margin-top: 0.9375rem; /* 15px */
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 0.625rem; /* 10px */
  flex-wrap: wrap;
  margin: 0;
}

/* ===== BUTTON STYLES ===== */
.btn-contact[b-0izaqkzdch],
.btn-guide[b-0izaqkzdch] {
  color: white;
  font-size: 12px;
  font-weight: bold;
  border: none;
  border-radius: 1.875rem; /* 30px */
  /*   padding: 0.75rem 1.5rem;*/
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  /*text-transform: uppercase;*/
  position: relative;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  user-select: none;
  /*width: 48%;*/
  /*height: 2.5rem;*/ /* 40px */
  height: 2.8125rem; /* 45px */
  margin: 0.25rem 0;
  letter-spacing: 0.5px;
  /*  transform: translateY(0);*/
  /*  transition: all 0.1s ease;*/
  /* box-shadow: 0 3px 0 rgba(0, 0, 0, 0.2);*/
}

.btn-contact[b-0izaqkzdch] {
  background-color: #10b981;
}

.btn-contact:hover[b-0izaqkzdch] {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(16, 185, 129, 0.4);
}

.btn-contact:active[b-0izaqkzdch] {
  transform: translateY(1px);
  transition: all 0.05s ease;
  background-color: #0d9c6b;
  color: white;
}

.btn-guide[b-0izaqkzdch] {
  background-color: #f43f5e;
}

.btn-guide:hover[b-0izaqkzdch] {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(244, 63, 94, 0.4);
}

.btn-guide:active[b-0izaqkzdch] {
  transform: translateY(1px);
  transition: all 0.05s ease;
  background-color: #e11d48;
  color: white;
}

/* ===== RESPONSIVE DESIGN ===== */
/* Móviles pequeños (hasta 575.98px) */
@media (max-width: 35.99875rem) {
  /* 575.98px */
  .logo-container img[b-0izaqkzdch] {
    max-width: 85%;
  }

  .top-icon[b-0izaqkzdch] {
    height: 2.1875rem; /* 35px */
    width: 2.1875rem; /* 35px */
  }

  .action-label[b-0izaqkzdch] {
    font-size: 0.9375rem; /* 15px */
    margin-left: 0.25rem; /* 4px */
  }

  .btn-contact[b-0izaqkzdch],
  .btn-guide[b-0izaqkzdch] {
    width: 7.5rem; /* 120px */
    height: 2.8125rem; /* 45px */
    font-size: 0.6875rem; /* 11px */
  }

  .app-title[b-0izaqkzdch] {
    font-size: 1.625rem; /* 26px */
  }

  .app-version[b-0izaqkzdch] {
    font-size: 0.875rem; /* 14px */
  }
}

.title[b-0izaqkzdch] {
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
  margin: 0;
}

/* Tablets (576px - 991.98px) */
@media (min-width: 36rem) and (max-width: 61.99875rem) {
  /* 576px - 991.98px */
  .logo-container img[b-0izaqkzdch] {
    max-width: 70%;
  }

  .top-icon[b-0izaqkzdch] {
    height: 2.5rem; /* 40px */
    width: 2.5rem; /* 40px */
  }

  .btn-contact[b-0izaqkzdch],
  .btn-guide[b-0izaqkzdch] {
    width: 8.75rem; /* 140px */
    height: 3.125rem; /* 50px */
    font-size: 0.75rem; /* 12px */
  }
}

/* Escritorios medianos (992px - 1199.98px) */
@media (min-width: 62rem) and (max-width: 74.99875rem) {
  /* 992px - 1199.98px */
  .logo-container img[b-0izaqkzdch] {
    max-width: 18.75rem; /* 300px */
  }
}

/* Escritorios grandes (1200px en adelante) */
@media (min-width: 75rem) {
  /* 1200px */
  .logo-container img[b-0izaqkzdch] {
    max-width: 25rem; /* 400px */
  }

  .card-content[b-0izaqkzdch] {
    padding: 1.5rem; /* 24px */
  }
}
/* /Features/Sistema/Bienvenidapage.razor.rz.scp.css */
/* ===== CSS VARIABLES - Paleta de Colores Shmenkare.Soft ===== */
:root[b-xc2cflc7ae] {
  --primary-color: #0066cc;
  --secondary-color: #001f3f;
  --accent-color: #00c7b7;
  --dark-color: #121212;
  --light-color: #f8f9fa;
  --transition-speed: 0.3s;
  --border-radius: 15px;
}

/* Animation */
@keyframes fadeIn-b-xc2cflc7ae {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* General Layout */
.root-grid[b-xc2cflc7ae] {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    overflow-y: auto;
    height: 100%;
    margin: 0 -1.5rem;
    padding: 0.5rem;
}

.root-grid[b-xc2cflc7ae] {
    opacity: 0;
}

    .root-grid.loaded[b-xc2cflc7ae] {
        animation: fadeIn-b-xc2cflc7ae 500ms ease-in-out forwards;
    }

/* Main Content */
.flex-grow-1[b-xc2cflc7ae] {
    flex: 1;
}

.container[b-xc2cflc7ae] {
    width: 100%;
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
    margin-right: auto;
    margin-left: auto;
}

/* Logo */
.logo-img[b-xc2cflc7ae] {
    max-height: 25rem;
    opacity: 0.9;
    width: auto;
    height: auto;
    max-width: 100%;
}

/* Typography */
.display-4[b-xc2cflc7ae] {
    font-size: 2.5rem; /* 40px */
    font-weight: 300;
    line-height: 1.2;
}

.display-1[b-xc2cflc7ae] {
    font-size: 5rem; /* 80px */
    font-weight: 300;
    line-height: 1.2;
}

.brand-title[b-xc2cflc7ae] {
    color: #FFC300;
    margin-bottom: 1rem; /* 16px */
    text-shadow: 0 0 15px rgba(255, 195, 0, 0.6);
}

.lead[b-xc2cflc7ae] {
    font-size: 1.25rem; /* 20px */
    font-weight: 300;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .display-1[b-xc2cflc7ae] {
        font-size: 3.5rem; /* 56px */
    }

    .logo-img[b-xc2cflc7ae] {
        max-height: 18.75rem; /* 300px */
    }
}

@media (min-width: 769px) {
    .container[b-xc2cflc7ae] {
        max-width: 71.25rem; /* 1140px */
    }
}
/* /Features/Sistema/Install.razor.rz.scp.css */
:root[b-ynmzvl4y3q] {
  --primary-color: #0066cc;
  --secondary-color: #001f3f;
  --accent-color: #00c7b7;
  --bg-color: #f8f9fa;
  --highlight-color: #0066cc;
  --border-radius: 12px;
  --transition-speed: 0.25s;
  --card-bg: #ffffff;
  --text-color: #1a1a1b;
  --border-color: #e2e8f0;
}

.dark-mode[b-ynmzvl4y3q], html[data-bs-theme="dark"][b-ynmzvl4y3q], body[data-bs-theme="dark"][b-ynmzvl4y3q] {
  --bg-color: #0f172a;
  --card-bg: #1e293b;
  --highlight-color: #00c7b7;
  --text-color: #f8f9fa;
  --border-color: #334155;
}

/* ===== LAYOUT ===== */
.root-grid[b-ynmzvl4y3q] {
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
    height: 100%;
    margin: 0 -1.5rem;
    padding: 0.5rem; /* 8px */
    overflow-x: hidden;
    /*align-items: center;*/
    align-content:center;
}

/* ===== CARD STYLES ===== */
.main-card[b-ynmzvl4y3q] {
    padding: 0;
    border-radius: var(--border-radius);
    background: linear-gradient(135deg, var(--secondary-color), #0a0a0a) !important;
    border: 1px solid var(--primary-color) !important;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
    overflow: hidden;
    align-items: center;
    margin-top: 1rem;
    transition: all var(--transition-speed) ease;
}

.main-card:hover[b-ynmzvl4y3q] {
    border-color: var(--accent-color) !important;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.2);
}

.dark-theme .main-card[b-ynmzvl4y3q],
html[data-bs-theme="dark"] .main-card[b-ynmzvl4y3q],
.page.dark-theme .main-card[b-ynmzvl4y3q],
[data-bs-theme="dark"] .main-card[b-ynmzvl4y3q],
body.dark-theme .main-card[b-ynmzvl4y3q],
body[data-bs-theme="dark"] .main-card[b-ynmzvl4y3q] {
  background: linear-gradient(135deg, var(--secondary-color), #0a0a0a) !important;
  border-color: var(--primary-color) !important;
}

.card-content[b-ynmzvl4y3q] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3125rem; /* 5px */
  padding: 1.25rem; /* 20px */
}

/* ===== LOGO & APP INFO ===== */
.logo-container[b-ynmzvl4y3q] {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1rem auto;
  width: 50%;
  text-align: center;
}

.logo-container img[b-ynmzvl4y3q] {
  display: inline-block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.app-info[b-ynmzvl4y3q] {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: -15px;
  width: 100%;
}

/* ===== TYPOGRAPHY ===== */
.app-title[b-ynmzvl4y3q] {
  color: #ffc300;
  font-size: 1.875rem; /* 30px */
  font-weight: bold;
  margin: 0.625rem 0; /* 10px */
  text-shadow: 0 0 15px rgba(255, 195, 0, 0.6);
}

.install-text[b-ynmzvl4y3q] {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.install-button[b-ynmzvl4y3q] {
    font-size: 1.2rem;
    padding: 0.8rem 2rem;
    border-radius: var(--border-radius);
    background-color: var(--primary-color);
    border: none;
    color: white;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

.install-button:hover[b-ynmzvl4y3q] {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.install-button:active[b-ynmzvl4y3q] {
    transform: translateY(1px);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 35.99875rem) {
  .logo-container img[b-ynmzvl4y3q] {
    max-width: 85%;
  }
  .app-title[b-ynmzvl4y3q] {
    font-size: 1.625rem; /* 26px */
  }
}

@media (min-width: 36rem) and (max-width: 61.99875rem) {
  .logo-container img[b-ynmzvl4y3q] {
    max-width: 70%;
  }
}

@media (min-width: 62rem) and (max-width: 74.99875rem) {
  .logo-container img[b-ynmzvl4y3q] {
    max-width: 18.75rem; /* 300px */
  }
}

@media (min-width: 75rem) {
  .logo-container img[b-ynmzvl4y3q] {
    max-width: 25rem; /* 400px */
  }
}
/* /Features/Sistema/InstallAppModal.razor.rz.scp.css */
.modal-backdrop[b-z5ojo2ktwc] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
}
/* /Features/Sistema/PoliticaPrivacidad.razor.rz.scp.css */
/* ===== CSS VARIABLES - Paleta de Colores Shmenkare.Soft ===== */
:root[b-zmc5nhqcb9] {
  --primary-color: #0066cc;
  --secondary-color: #001f3f;
  --accent-color: #00c7b7;
  --dark-color: #121212;
  --light-color: #f8f9fa;
  --transition-speed: 0.3s;
  --border-radius: 15px;
}

/* Puedes añadir estilos específicos para la página de política de privacidad aquí */
.container[b-zmc5nhqcb9] {
    max-width: 800px;
    margin: auto;
    padding: 20px;
    background-color: var(--background-color);
    color: var(--text-color);
}

h1[b-zmc5nhqcb9], h2[b-zmc5nhqcb9], h3[b-zmc5nhqcb9], h4[b-zmc5nhqcb9], h5[b-zmc5nhqcb9] {
    color: var(--primary-color);
    margin-top: 1.5rem;
}

p[b-zmc5nhqcb9], li[b-zmc5nhqcb9] {
    line-height: 1.6;
}

a[b-zmc5nhqcb9] {
    color: var(--accent-color);
    text-decoration: underline;
}

a:hover[b-zmc5nhqcb9] {
    color: var(--primary-color);
}
/* /Shared/Components/AdBanner.razor.rz.scp.css */
@keyframes slideInFromRight-b-xjsn4mglji {
    0% {
        transform: translateX(500px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ===== BANNER ===== */
.ad-banner[b-xjsn4mglji] {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    color: #94a3b8;
    border: 0.0625rem dashed #334155; /* 1px */
    border-radius: 0.625rem; /* 10px */
    min-height: 3.125rem; /* 50px */
    /* Set initial state for animation */
    opacity: 0;
    /* Animation */
    animation: slideInFromRight-b-xjsn4mglji 500ms cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

    .ad-banner p[b-xjsn4mglji] {
        margin: 0;
        color: #666;
    }
/* /Shared/Layout/MainLayout.razor.rz.scp.css */
/* ===== CSS VARIABLES - Paleta de Colores Shmenkare.Soft ===== */
:root[b-vog9cunpu4] {
  --primary-color: #0066cc;
  --secondary-color: #001f3f;
  --accent-color: #00c7b7;
  --dark-color: #121212;
  --light-color: #f8f9fa;
  --transition-speed: 0.3s;
  --border-radius: 15px;
}

.page[b-vog9cunpu4] {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: var(--background-color);
}

main[b-vog9cunpu4] {
  flex: 1;
}

.sidebar[b-vog9cunpu4] {
  background: linear-gradient(180deg, #001f3f 0%, #121212 70%) !important;
}

/* Asegurar que sidebar mantenga gradiente azul en modo oscuro */
.dark-theme .sidebar[b-vog9cunpu4],
html[data-bs-theme="dark"] .sidebar[b-vog9cunpu4],
.page.dark-theme .sidebar[b-vog9cunpu4],
[data-bs-theme="dark"] .sidebar[b-vog9cunpu4],
body.dark-theme .sidebar[b-vog9cunpu4],
body[data-bs-theme="dark"] .sidebar[b-vog9cunpu4] {
  background: linear-gradient(180deg, #001f3f 0%, #121212 70%) !important;
}

.top-row[b-vog9cunpu4] {
  background-color: var(--background-color);
  border-bottom: 1px solid var(--border-color);
  justify-content: flex-end;
  height: 3.5rem;
  display: flex;
  align-items: center;
}

.top-row[b-vog9cunpu4]  a,
.top-row[b-vog9cunpu4]  .btn-link {
  white-space: nowrap;
  margin-left: 1.5rem;
  text-decoration: none;
}

.top-row[b-vog9cunpu4]  a:hover,
.top-row[b-vog9cunpu4]  .btn-link:hover {
  text-decoration: underline;
}

.top-row[b-vog9cunpu4]  a:first-child {
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 640.98px) {
  .top-row[b-vog9cunpu4] {
    justify-content: space-between;
  }

  .top-row[b-vog9cunpu4]  a,
  .top-row[b-vog9cunpu4]  .btn-link {
    margin-left: 0;
  }
}

@media (min-width: 641px) {
  .page[b-vog9cunpu4] {
    flex-direction: row;
  }

  .sidebar[b-vog9cunpu4] {
    width: 250px;
    height: 100vh;
    position: sticky;
    top: 0;
  }

  .top-row[b-vog9cunpu4] {
    position: sticky;
    top: 0;
    z-index: 1;
  }

  .top-row.auth[b-vog9cunpu4]  a:first-child {
    flex: 1;
    text-align: right;
    width: 0;
  }

  .top-row[b-vog9cunpu4],
  article[b-vog9cunpu4] {
    padding-left: 2rem !important;
    padding-right: 1.5rem !important;
  }
}

#blazor-error-ui[b-vog9cunpu4] {
  color-scheme: light only;
  background: lightyellow;
  bottom: 0;
  box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  display: none;
  left: 0;
  padding: 0.6rem 1.25rem 0.7rem 1.25rem;
  position: fixed;
  width: 100%;
  z-index: 1000;
}

#blazor-error-ui .dismiss[b-vog9cunpu4] {
  cursor: pointer;
  position: absolute;
  right: 0.75rem;
  top: 0.5rem;
}

/* ===== UPDATE BANNER ===== */
.update-banner[b-vog9cunpu4] {
  background: linear-gradient(90deg, #0055a5, #001f3f);
  color: white;
  padding: 10px 20px;
  z-index: 1001;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  border-bottom: 2px solid var(--accent-color);
}

.update-banner-content[b-vog9cunpu4] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  max-width: 1200px;
  margin: 0 auto;
  font-weight: 600;
  font-size: 0.95rem;
}

.update-icon[b-vog9cunpu4] {
  animation: bounce-b-vog9cunpu4 2s infinite;
}

.btn-update-now[b-vog9cunpu4] {
  background-color: var(--accent-color);
  color: white;
  border: none;
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 800;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 0 10px rgba(0, 199, 183, 0.4);
}

.btn-update-now:hover[b-vog9cunpu4] {
  transform: scale(1.05);
  background-color: white;
}

@keyframes bounce-b-vog9cunpu4 {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-5px);
  }
  60% {
    transform: translateY(-3px);
  }
}

.animate-slide-down[b-vog9cunpu4] {
  animation: slideDown-b-vog9cunpu4 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@keyframes slideDown-b-vog9cunpu4 {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 640.98px) {
  .update-banner-content[b-vog9cunpu4] {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}
/* /Shared/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-bjhg964u5r] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

    .navbar-toggler:checked[b-bjhg964u5r] {
        background-color: rgba(255, 255, 255, 0.5);
    }

.top-row[b-bjhg964u5r] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-bjhg964u5r] {
    font-size: 1.1rem;
}

.bi[b-bjhg964u5r] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-bjhg964u5r] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-bjhg964u5r] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-bjhg964u5r] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}


.nav-item[b-bjhg964u5r] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-bjhg964u5r] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-bjhg964u5r] {
        padding-bottom: 1rem;
    }

    .nav-item[b-bjhg964u5r]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 12px; /* Shmenkare.Soft border radius */
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
        transition: all 0.25s ease;
    }

    .nav-item[b-bjhg964u5r]  a.active {
        background-color: var(--primary-color, #0066cc);
        color: white;
        box-shadow: 0 4px 8px rgba(0, 102, 204, 0.3);
    }

    .nav-item[b-bjhg964u5r]  .nav-link:hover {
        background-color: rgba(255,255,255,0.1);
        color: white;
        transform: translateX(4px);
    }

.nav-scrollable[b-bjhg964u5r] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-bjhg964u5r] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-bjhg964u5r] {
        display: none;
    }

    .nav-scrollable[b-bjhg964u5r] {
        /* Never collapse the sidebar for wide screens */
        display: block;
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}

.nav-icon[b-bjhg964u5r] {
    width: 24px;
    height: 24px;
    margin-right: 0.75rem;
}
