
/* Para las fuentes estáticas cursivas */

:root {
    --falcon-body-font-family: 'Overpass', sans-serif;
}

/* Aplicar la fuente a todos los elementos */
body, .body,
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6,
p, .p, a, .a, li, .li, ul, .ul, ol, .ol, div, .div,
span, .span, em, .em, i, .i, button, .button, input, .input,
textarea, .textarea, select, .select, label, .label, th, .th, td, .td,
table, .table, nav, .nav, header, .header, footer, .footer,
blockquote, .blockquote, pre, .pre, code, .code,
dl, .dl, dt, .dt, dd, .dd, figure, .figure, figcaption, .figcaption,
article, .article, section, .section, aside, .aside {
    font-family: 'Overpass', sans-serif !important;

}

/* Aplicar la fuente italic a los elementos específicos */
em, .em, i, .i {
    font-family: 'Overpass', sans-serif !important;
}


li, .li {
    font-size: 13px;
}


/* BTON ANIMADO APLICACIÓN */
.btnAnimado{
    z-index: 1;
    border: none;
    display: block;
    text-align: center;
    cursor: pointer;
    text-transform: uppercase;
    outline: none;
    overflow: hidden;
    position: relative;
    color: black;
    font-weight: 700;
    font-size: 15px;
    background-color:white;
    padding: 11px 35px;
    margin: 0 auto;
    box-shadow: 0 5px 20px #11365f;

}

.btnAnimado span {
    position: relative;
    z-index: 1;
}

.btnAnimado:after {
    z-index: -1;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 490%;
    width: 140%;
    color:white;
    background: #11365f;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    -webkit-transform: translateX(-98%) translateY(-25%) rotate(45deg);
    transform: translateX(-98%) translateY(-25%) rotate(45deg);
}

.btnAnimado:hover:after {
    -webkit-transform: translateX(-9%) translateY(-25%) rotate(45deg);
    transform: translateX(-9%) translateY(-25%) rotate(45deg);

    color:white;
}
.btnAnimado:hover {
    color: white;
}

.colorAplicativo{
    color:#1C2B55;
}
.dark-blue {
    background-color: #11365f !important;
}


.filepond--credits {
    display: none !important;
}

/* Estilos generales para la aplicación Growix */
:root {
    --growix-blue: #1C2B55;
    --growix-orange: #F5A623;
    --growix-light-blue: #2c3e6b;
    --growix-light-orange: #f8b84d;
}

/* Estilo para el banner superior */
.list-group-item.active {
    background-color: var(--growix-blue) !important;
    border-color: var(--growix-blue) !important;
    background-image: linear-gradient(to right, var(--growix-blue), var(--growix-light-blue));
}

/* Estilos para las tablas */
.table {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.table tbody tr {
    transition: all 0.2s ease;
}

.table tbody tr:hover {
    background-color: rgba(245, 166, 35, 0.1) !important;
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.table tbody td {
    padding: 12px 15px;
    vertical-align: middle;
    border-top: 1px solid #f0f0f0;
}

/* Animación de carga para las tablas */
@keyframes tableLoading {
   from {
        opacity: 0.5;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.table-loading {
    animation: tableLoading 0.5s ease-out forwards;
}

/* Estilo para los botones */
.btn-primary {
    background-color: var(--growix-blue);
    border-color: var(--growix-blue);
}

.btn-primary:hover {
    background-color: var(--growix-light-blue);
    border-color: var(--growix-light-blue);
}

.btn-warning {
    background-color: var(--growix-orange);
    border-color: var(--growix-orange);
    color: white;
}

.btn-warning:hover {
    background-color: var(--growix-light-orange);
    border-color: var(--growix-light-orange);
    color: white;
}

/* Estilo para las cards */
.card {
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.card-header {
    background-color: white;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-weight: 600;
}

/* Efecto de sombra al pasar el mouse sobre elementos interactivos */
.hover-shadow {
    transition: box-shadow 0.3s ease;
}

.hover-shadow:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Loader para cuando la tabla está cargando */
.table-loader {
    display: none;
    text-align: center;
    padding: 20px;
}

.table-loader.active {
    display: block;
}

.loader-spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top: 4px solid var(--growix-orange);
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}