﻿body {
}


/* El layout principal ocupa toda la altura */
.sgi-layout-container {
    display: flex;
    flex-direction: column;
    height: 100vh;
}


/* HEADER arriba */
.sgi-header-fijo {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;
    padding: 5px;
    border-bottom: 1px solid #ccc;
}
/* MENU pegado justo debajo del header */
.sgi-menu-fijo {
    position: sticky;
    top: 60px; /* coincide con la altura del Header */
    z-index: 999;
    background: white;
    border-bottom: 1px solid #ddd;
}

/* HEADER normal, no fijo */
.sgi-header {
    background: white;
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

/* MENU fijo arriba cuando se hace scroll */
.sgi-menu {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;
    border-bottom: 1px solid #ccc;
}


/* FOOTER fijo abajo */
.sgi-footer {
    position: sticky;
    bottom: 0;
    z-index: 1000;
    background: white;
    padding: 8px;
    border-top: 1px solid #ccc;
}


/* CONTENIDO central que crece y hace scroll */
.sgi-content {
    flex: 1;
    overflow-y: auto; /* scroll solo del contenido */
    padding: 1rem;
}




.Header {
}

.Menu {
    background-color: blue;
    color: white;
}

.contenido {
    padding-bottom: 30px;
    padding-top: 20px;
}

.Footer {
    background-color: gray;
    color: white;
    height: 30px;
    width: 100%;
    position: fixed;
    bottom: 0;
}


container-fluid {
    margin: 0;
    padding: 0;
}

.sgmenu {
    background-color: blue;
    color: white;
}

.sgstatusbar {
    background-color: gray;
    color: white;
}

.centered-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Ajusta la altura según tus necesidades */
}

.centrado {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Ajusta la altura según tus necesidades */
}

.centrado-horizontal {
    width: 100%;
    text-align: center;
}

.centrado-vertical {
    display: flex;
    align-items: center;
    height: 100vh; /* Ajusta la altura según tus necesidades */
}

.logo {
    width: 300px;
}


.imagen-fondo {
    min-height: 100vh;
    background-image: url('/_content/sgi.blazor/images/sgipro.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: rgba(255,255,255,0.7); /* Oscurece 50% */
    background-blend-mode: darken; /* Mezcla el color con la imagen */
}

/*DEVEXPRESS*/
.mg-spinedit-input {
    text-align: right;
}


/*WIDGETS*/
.widget-header{
    color:blue;
    font-size:large;
}
