﻿html, 
.body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden; /* Evita scroll en el body */
    font-family: Arial, sans-serif;
    background-color: #ffffff;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #8db44b; /* azul oscuro elegante */
    color:black;
    padding: 10px 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    margin: 0px auto;
}

.header-left 
.header-icon {
    width: 20px;
    height: 20px;
    padding:3px;
}

.header-center h6 {
    margin: 0;
    padding-top:2px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    padding-bottom:2px;
}

.header-right 
.user-info {
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    padding-bottom:3px;
    color:black;
}

    .header-right .user-info i {
        color:aliceblue; /* dorado para el ícono */
    }

.nav {
    height: 30px;
    background-color: #00BBC9;
    color: white;
    padding: 10px;
    position: fixed;
    top: 30px;
    left: 0;
    right: 0;
    z-index: 999;
}

.radmenu {
    height: 30px;
    background-color: #CACACA;
    position: fixed;
    top: 55px;
    left: 0;
    right: 0;
    z-index: 15000;
}

/*Espacio paginas hijas*/
.content-wrapper {
    position: absolute;
    top: 80px; /* altura del header */
    bottom: 0;
    left: 0;
    right: 0;
    overflow: scroll; /* Habilita scroll en ambas direcciones */
    background-color: #878787;
    width: contain;
}

.inner-content {
    min-height: calc(100% - 15px); /* altura mínima para el contenido sin el header */
    padding: 10px;
    width:auto;
    box-sizing: border-box;
    background-color:#ffffff;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 128, 0.2); /* verde oliva traslúcido */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 20050;
}

.modal-box {
    background-color: white;
    padding: 10px;
    border-radius: 10px;
    width: auto;
    height: auto;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    position: relative;
    z-index: 20050;
}

.demo-container {
    text-align: left;
}

    .demo-container .RadMenu {
        float: none;
        margin: 0 auto 0;
        display: inline-block;
    }

    .demo-container .rmLink {
        text-align: left;
    }

.footer {
    height: 30px;
    background-color: #F23030;
    padding: 10px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}
