﻿/*html, body {
    height: 100%;
    font-family: 'Segoe UI', sans-serif;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 35px;
    background-color: #2298e6;
    color: white;
    padding: 10px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-title {
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 10px;*/ /* espacio entre logo y nombre */
/*}

    .user-info img {
        width: 26px;
        height: 26px;
        border-radius: 5%;
        border: none;
        object-fit: cover;
    }

    .user-info span {
        font-weight: 500;
    }

.radmenu {
    height: 28px;
    position: fixed;
    top: 23px;
    left: 0;
    right: 0;
    z-index: 15000;
}*/

/* Estilo base para el aside */
/*.aside {
    width: 300px;
    height:100%;
    background-color: #f4f4f4;
    padding: 30px;
    box-sizing: border-box;
    border-right: 1px solid #ccc;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}*/

/* Posicionamiento en layout tipo flex */
/*.layout-container {
    display: flex;
    flex-direction: row;
    height:100vh;
}

    .layout-container aside {
        flex-shrink: 0;
    }*/

/* Responsive: ocultar aside en pantallas pequeñas */
/*@media screen and (max-width: 768px) {
    aside {
        display: none;
    }
}*/

/*main de la pagina*/
/*.main {
    flex: 1;
    padding: 28px 5px 5px;*/ /* espacio para header y footer */
    /*overflow-y: auto;
    box-sizing: border-box;
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background-color: #000000;
    color: white;
    padding: 0px 10px;
    text-align: center;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.05);
}*/

/* Responsive contenido */
/*.container {
    max-width: 1800px;
    margin: auto;
}

h1 {
    margin-bottom: 20px;
}

p {
    margin-bottom: 16px;
    line-height: 1.6;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 18px;
    cursor: pointer;
    font-weight: bold;
    color: #333;
}

.btn {
    padding: 10px 20px;
    background-color: olive;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

    .btn:hover {
        background-color: darkolivegreen;
    }*/

    /*opcion 2 para la master page*/
/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Layout general */
.body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(12, 122, 240, 0.29); /* azul oliva traslúcido */
    backdrop-filter: blur(10px); /*desenfoque*/
    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;
}

/* Header */
    .header {
    height: 30px;
    background-color: #2298e6;
    color: white;
    display: flex;
    align-items: center;
    padding: 0 20px;
    justify-content: flex-end;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.nickname {
    font-weight: bold;
}

/* RadMenu */
.radmenu {
    background-color: #34495e;
    padding: 5px 20px;
}

/* Contenedor principal */
.layout-container {
    display: flex;
    flex: 1;
    min-height: 0; /* Para evitar overflow en flex */
}

/* Aside */
.aside {
    width: 300px;
    background-color:whitesmoke;
    padding: 20px;
    border-right: 1px solid #ccc;
    overflow-y: auto;
}

/* Main */
.main {
    flex: 1;
    padding: 28px 20px 5px;
    overflow-y: auto;
    background-color: #fff;
}

/* Footer */
.footer {
    height: 30px;
    background-color:black;
    color: white;
    text-align: center;
    line-height: 30px;
    font-size: 14px;
}