.btn-gradient {
    background: linear-gradient(to bottom, #14441a, #2f8f32);
    border: none;
    color: white;
}
.btn-gradient:hover {
    background: linear-gradient(to bottom, #14441a, #2f8f32);
    border: none;
    color: white;
}
#btn_navbar_collapse{
    background-color: rgba(255, 255, 255, 0.7);
    color: white;
}
.hr-fancy {
    border: 0;
    height: 2px;
    background-image: linear-gradient(90deg, transparent, rgb(255, 255, 255), transparent);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
    margin: 0 auto;
    width: 80%;
}
.xxs-text {
    font-size: 0.75rem;
}
.radio-large {
    width: 20px;
    height: 20px;
}
.input-formulario {
    width: 80px;
    height: 50px;
    text-align: center;
}
.input-formulario-alto {
    height: 50px;
    text-align: center;
}
body {
    position: relative;
    height: 100vh;
    margin: 0;
    overflow-x: hidden;
}
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url('../img/fondos/fondo.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    filter: blur(0);
    transform: scale(1.05);
    z-index: -1;
    transition: filter 0.2s ease;
}
body.con-fondo-borroso::before {
    filter: blur(6px);
}
#navbar {
    background-color: rgba(134, 72, 1, 0.6) !important;
}
.text-white {
    color: white !important;
}
#menu-principal button {
    height: 80px;
}
#vista-otros button {
    height: 80px;
}
.tabla-dinamica-contenedor {
    max-height: calc(95vh - 170px);
    overflow: auto;
    background-color: rgba(255, 255, 255, 0.96);
    border-radius: 5px;
    margin-bottom: 20px;
}
.tabla-dinamica {
    margin: 0;
    min-width: 100%;
}
.tabla-dinamica th {
    position: sticky;
    top: 0;
    z-index: 1;
    background-color: #14441a;
    color: white;
    text-transform: uppercase;
    white-space: nowrap;
}
.tabla-dinamica td {
    vertical-align: middle;
}
.tabla-dinamica-interna {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.75rem;
}
.tabla-dinamica-interna th,
.tabla-dinamica-interna td {
    border: 1px solid rgba(0, 0, 0, 0.15);
    padding: 4px 6px;
    text-align: center;
}
.tabla-dinamica-interna th {
    background-color: rgba(20, 68, 26, 0.12);
    color: #212529;
    position: static;
    text-transform: none;
    white-space: nowrap;
}
.tabla-dinamica-lista {
    display: grid;
    gap: 6px;
}
.tabla-dinamica-lista-item {
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    padding: 4px;
    background-color: rgba(255, 255, 255, 0.65);
}
.vista-informativa {
    background-color: rgba(255, 255, 255, 0.94);
    border-radius: 5px;
    padding: 18px;
    font-size: 1rem;
}
.vista-informativa h2 {
    margin-bottom: 16px;
    font-weight: 700;
}
.vista-informativa p {
    color: #212529;
    font-weight: 400;
    line-height: 1.55;
}
p {
    color: white;
    font-weight: bold;
}
.texto_resultado {
    min-height: 50px;
    width: 100%;
    padding: 10px;
    background-color: rgb(255, 255, 255);
    border-radius: 5px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: medium;
}
#popup {
    width: min(80%, 720px);
    background-color: rgba(148, 148, 148, 0.9);
    border-radius: 15px;
    padding: 10px;
    position: relative;
    z-index: 1001;
}
#contenedor_popup {
    height: 100vh;
    position: fixed;
    inset: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    pointer-events: none;
    background-color: rgba(255, 255, 255, 0);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}
#contenedor_popup > * {
    pointer-events: auto;
}
#contenedor-general {
    max-width: 500px;
}