.topbar .topbar-left {
	background-color: transparent;
	float: left;
	height: 28px;
}
.topbar .navigation-menu > li > a {
	padding: 15px;
}

.topbar-main {
	background: transparent;
	min-height: 40px;
}

.logo-custom img {
	width: 100%;
    padding: 2px;
    margin-top:7px;
}

.form-control {
	border: 1px solid #0d79af;
}

.bg-cmsbase {
	background: #314888;
}

.text-cmsbase {
	color: #203161;
}


.table-bordered td, .table-bordered th{

color: #444444;


}

/* lo mio */
/* Navbar base */
.lgo-navbar {
    display: flex;
    align-items: center;
    padding: 0 1rem;
    background: #314888;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1030;
    box-sizing: border-box;
    height: 70px;
	justify-content: space-between;
}

/* Logo */
.lgo-navbar-logo {
    flex-shrink: 0;
}

.lgo-navbar-logo img {
    height: 40px;
    width: auto;
    display: block;
}

/* Versión */
.lgo-version-badge {
    margin-left: 0.5rem;
    font-weight: bold;
    font-size: 0.9rem;
    color: #fff;
}

/* Navegación */
#lgo-navigation {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Links */
.lgo-nav-link, .lgo-dropdown-item {
    color: white;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.lgo-nav-link:hover, .lgo-dropdown-item:hover,
.lgo-nav-link:focus-visible, .lgo-dropdown-item:focus-visible {
    text-decoration: underline;
    outline: none;
    color: white;
    cursor: pointer;
}
.lgo-nav-link:focus {
    outline: none;
}
.lgo-nav-link i, .lgo-dropdown-item i {
    color: white;
}

/* Dropdown base */
.lgo-custom-dropdown {
    position: relative;
}

/* Dropdown menú */
.lgo-custom-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 1;
    padding: 10px;
    color: #333;
}
.lgo-custom-dropdown:hover > .lgo-custom-dropdown-menu,
.lgo-custom-dropdown.lgo-active > .lgo-custom-dropdown-menu {
    display: block;
}
.lgo-custom-dropdown-menu .lgo-dropdown-item {
    display: block;
    padding: 8px 12px;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.2s ease;
}
.lgo-custom-dropdown-menu .lgo-dropdown-item:hover,
.lgo-custom-dropdown-menu .lgo-dropdown-item:focus-visible {
    background-color: #f0f0f0;
    outline: none;
}

/* Dropdown headers */
.lgo-dropdown-header {
    text-align: center;
    font-weight: bold;
    color: #666;
    margin-bottom: 5px;
    user-select: none;
}

/* Botón menú hamburguesa */
.lgo-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    padding: 10px;
    color: rgb(255, 255, 255);
}
.lgo-negro {
    color: #000 !important;
}

/* Responsive */
@media (max-width: 1070px) {
    #lgo-navigation {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #fff;
        position: fixed;
        top: 60px;
        left: 0;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        padding-bottom: 10px;
        z-index: 1;
    }
    #lgo-navigation.lgo-active {
        display: flex;
    }

    .lgo-menu-toggle {
        display: block;
        color: rgb(255, 255, 255);
    }
    .lgo-nav-link, .lgo-dropdown-item {
        color: black;
        padding: 12px 20px;
    }
    .lgo-nav-link i, .lgo-dropdown-item i {
        color: black;
    }
    .lgo-custom-dropdown {
        position: relative;
        overflow: visible;
    }
    .lgo-custom-dropdown-menu {
        position: absolute !important;
        top: 100%;
        left: 0;
        width: 100%;
        max-height: 200px;
        overflow-y: auto;
        background-color: #fff !important;
        border: 1px solid #ddd !important;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
        border-radius: 0 0 8px 8px;
        padding: 0.5rem 1rem;
        display: none;
        z-index: 1;
    }
    .lgo-custom-dropdown.lgo-active > .lgo-custom-dropdown-menu {
        display: block !important;
    }

    .lgo-custom-dropdown > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    .lgo-arrow-icon {
        font-size: 0.8rem;
        margin-left: 5px;
        transition: transform 0.2s;
    }
    .lgo-custom-dropdown.lgo-active > a .lgo-arrow-icon {
        transform: rotate(180deg);
    }
}
