* {
    transition: all 0.3s ease;
}

body {
    background-color: var(--web-background);
    color: var(--text-info);
}
footer { background-color: var(--web-footer); }
footer p { margin: 0; }


h1, h2, h3, h4, h5, h6 {
    display: block;
    clear: both;
    font-weight: bold;
}
h1 { font-size: 3rem; color: var(--text-high-constrast); }
h2 { font-size: 2rem; color: var(--text-mid-contrast)}
h3 { font-size: 1.7rem; color: var(--text-heading); }
h4 { font-size: 1.3rem; color: var(--text-heading); }
h5 { font-size: 1.2rem; color: var(--text-heading); }

.text-high-contrast {
    color: var(--text-high-constrast);
}
.text-mid-contrast {
    color: var(--text-mid-contrast);
}

.navbar {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.brand-with-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-logo {
    display: block;
    max-height: 70px;
    width: auto;
}

.transparent-navbar {
    background-color: transparent !important;
}

.themed-navbar {
    background-color: var(--web-background) !important;
}

.themed-navbar .brand {
    background: none;
    color: black;
    text-shadow: none;
    -webkit-text-fill-color: inherit;
}
.dark .themed-navbar .brand {
    color: var(--text-high-constrast);
}

.tiny-icon {
    width: 1.5rem;
}

.medium-icon {
    width: 3.8rem;
}



/* Elimina el contorno azul en botones y elementos interactivos */
*:focus {
    box-shadow: none !important;
}



/* FORMS */
.form-control:focus,
.form-select:focus {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}
label {
    color: var(--bs-gray)
}

.responsive-card {
    min-width: 576px;
}

@media (max-width: 576px) {
    .responsive-card {
        min-width: 95%;
    }
}

.golden {
    background: linear-gradient(180deg, var(--gold-light), var(--gold-light), var(--gold-dark));
    color: #5a3e00; /* Color de texto oscuro para contraste */
    border-radius: 10px;
    padding: 15px 20px;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
    text-align: center;
    font-size: 14px;
}

.greener {
    background: linear-gradient(180deg, var(--green-light), var(--green-light), var(--green-dark));
    color: #5a3e00; /* Color de texto oscuro para contraste */
    border-radius: 10px;
    padding: 15px 20px;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
    text-align: center;
    font-size: 14px;
}

.yellower {
    background: linear-gradient(180deg, var(--yellow-light), var(--yellow-light), var(--yellow-dark));
    color: #5a3e00; /* Color de texto oscuro para contraste */
    border-radius: 10px;
    padding: 15px 20px;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
    text-align: center;
    font-size: 14px;
}

.redder {
    background: linear-gradient(180deg, var(--red-light), var(--red-light), var(--red-dark));
    color: #5a3e00; /* Color de texto oscuro para contraste */
    border-radius: 10px;
    padding: 15px 20px;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
    text-align: center;
    font-size: 14px;
}

/* Bordes recortados para el efecto de ticket */
.golden::before,
.golden::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--bs-light);
    border-radius: 50%;
}

.golden::before {
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
}

.golden::after {
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
}

/* Estilo del título del ticket */
.golden h5 {
    font-weight: bold;
    text-transform: uppercase;
}

/* Sombras para dar más realismo */
.golden {
    box-shadow: 0px 4px 10px rgba(218, 165, 32, 0.5);
}

/* Bordes recortados para el efecto de ticket */
.greener::before,
.greener::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--bs-light);
    border-radius: 50%;
}

.greener::before {
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
}

.greener::after {
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
}

/* Estilo del título del ticket */
.greener h5 {
    font-weight: bold;
    text-transform: uppercase;
}

/* Sombras para dar más realismo */
.greener {
    box-shadow: 0px 4px 10px rgba(218, 165, 32, 0.5);
}

/* Bordes recortados para el efecto de ticket */
.yellower::before,
.yellower::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--bs-light);
    border-radius: 50%;
}

.yellower::before {
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
}

.yellower::after {
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
}

/* Estilo del título del ticket */
.yellower h5 {
    font-weight: bold;
    text-transform: uppercase;
}

/* Sombras para dar más realismo */
.yellower {
    box-shadow: 0px 4px 10px rgba(218, 165, 32, 0.5);
}

/* Bordes recortados para el efecto de ticket */
.redder::before,
.redder::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--bs-light);
    border-radius: 50%;
}

.redder::before {
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
}

.redder::after {
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
}

/* Estilo del título del ticket */
.redder h5 {
    font-weight: bold;
    text-transform: uppercase;
}

/* Sombras para dar más realismo */
.redder {
    box-shadow: 0px 4px 10px rgba(218, 165, 32, 0.5);
}
