html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.divider-text:before,
.divider-text:after {
    color: white;
    content: "";
    flex: 1;
    border-bottom: 1px solid #555;
    margin: auto 0.25rem;
    box-shadow: 0 -2px;
}

.btn:focus, .btn:active:focus, .btn-link .nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
 }

.nav-link {
    transition:  transform 0.3s;
}

.nav-link:hover {
    transform: scale(1.1);
}

div.dt-button-collection {
    background-color: var(--bs-body-bg);
    color: var(--bs-body-color);
    border-color: var(--bs-border-color);
}

div.dt-button-collection .dt-button {
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
}

div.dt-button-collection .dt-button:hover {
    background-color: var(--bs-tertiary-bg);
}
/* Estilos para la tarjeta en tema claro */
[data-bs-theme=light] .theme-card {
    background-color: #ffe5d4; /* Fondo claro */
    color: #593f62; /* Texto oscuro */
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

/* Estilos para la tarjeta en tema oscuro */
[data-bs-theme=dark] .theme-card {
    background-color: #593f62; /* Fondo oscuro */
    color: #ffe5d4; /* Texto claro */
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.5);
}

.checkout-demo-notice {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    padding: 1rem;
    border: 1px solid rgba(245, 158, 11, 0.45);
    border-left: 4px solid #f59e0b;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, rgba(255, 251, 235, 0.96), rgba(254, 243, 199, 0.68));
    color: #713f12;
    box-shadow: 0 0.5rem 1.25rem rgba(120, 53, 15, 0.08);
}

.checkout-demo-notice__icon {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    background-color: #f59e0b;
    color: #fff7ed;
    font-size: 1.1rem;
}

[data-bs-theme=dark] .checkout-demo-notice {
    border-color: rgba(251, 191, 36, 0.45);
    border-left-color: #fbbf24;
    background: linear-gradient(135deg, rgba(69, 26, 3, 0.96), rgba(120, 53, 15, 0.72));
    color: #fef3c7;
    box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.22);
}
