/* =========================
   GLOBAL
========================= */
html, body {
    height: 100%;
    margin: 0;
    overflow: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
}

:root {
    --color: #ff8400;
}

/* =========================
   LAYOUT
========================= */
.app {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.header {
    flex: 0 0 auto;
}

.main-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

/* =========================
   TOP BARS
========================= */
.top-bar {
    background: var(--color);
    color: #fff;
    font-size: 14px;
    padding: 8px 15px;
}

/* =========================
   NAVBAR
========================= */
.navbar-custom {
    background: var(--color);
}

.navbar-custom .nav-link {
    color: #fff;
    font-size: 14px;
}

.navbar-custom .nav-link:hover {
    text-decoration: underline;
}

/* LOGO */
.logo-img {
    height: 35px;
}

@media (max-width: 991px) {
    .logo-img {
        height: 40px;
    }
}

/* =========================
   FOOTER
========================= */
.footer-top {
    background: #f2f2f2;
    padding: 20px;
}

.footer-bottom {
    background: var(--color);
    color: #fff;
    padding: 20px;
}

.footer-social img {
    width: 28px;
    margin-right: 8px;
}

/* full width */
.footer-full {
    margin-left: -20px;
    margin-right: -20px;
}

footer {
    
	flex-shrink: 0;
}
/* =========================
   SEGUNDO BLOQUE SUPERIOR
========================= */
.second-bar {
    background: var(--color);
    color: #fff;
    text-align: center;
    font-size: 14px;
    padding: 6px;
}

/* =========================
   LÍNEA DIVISORIA
========================= */
.line-white {
    height: 1px;
    background: #fff;
}
/* =========================
   HAMBURGUESA
========================= */
.navbar-toggler {
    font-size: 22px;
    outline: none;
    box-shadow: none;
}



/* =========================
   MENÚ MOBILE
========================= */
.menu-mobile {
    background: var(--color);
}

.menu-mobile .nav-link {
    font-size: 16px;
    padding: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.menu-mobile .collapse {
    background: var(--color);
}

/* quitar dropdown flotante en móvil */
@media (max-width: 991px) {
    .dropdown-menu {
        display: none !important;
    }
}
.menu-mobile [data-bs-toggle="collapse"] {
    cursor: pointer;
}

.modal-header-custom {
    background-color: #fd7e14;
    color: #fff;
    font-weight: 700;
    justify-content: center;
    position: relative;
}

.modal-header-custom .modal-title {
    width: 100%;
    text-align: center;
}

.modal-header-custom .btn-close {
    position: absolute;
    right: 10px;
    filter: invert(1);
}

/* tabla software */
.table-software th {
    font-size: 12px;
    background: #f8f9fa;
    text-align: center;
}

.table-software td {
    vertical-align: middle;
}

.table-software input,
.table-software select {
    height: 30px;
    font-size: 12px;
}