/* ===========================================================
   PLC REGISTO
   LAYOUT PRINCIPAL
=========================================================== */

html,
body{
    margin:0;
    padding:0;
    min-height:100%;
    overflow-x:auto;
    overflow-y:auto;
    font-family:"Segoe UI",Arial,sans-serif;
    background:#f5f5f5;
}

/* ===========================
   CABEÇALHO
=========================== */

#topbar{
    position:fixed;
    top:0;
    left:0;
    right:0;
    height:90px;
    background:#b00000;
    color:#fff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 25px;
    z-index:1000;
    box-shadow:0 2px 8px rgba(0,0,0,.2);
}

.logo{
    display:flex;
    align-items:center;
    gap:15px;
}

.logoPLC{
    width:70px;
    height:70px;
    background:#fff;
    border-radius:50%;
    padding:4px;
}

.logo h3{
    margin:0;
    font-size:24px;
    font-weight:bold;
}

.logo small{
    color:#FFD500;
    font-weight:bold;
}

.utilizador{
    text-align:right;
}

/* ===========================
   LAYOUT
=========================== */

#layout{
    display:flex;
    margin-top:90px;
    min-height:calc(100vh - 90px);
}

/* ===========================
   MENU LATERAL
=========================== */

#sidebar{

    width:270px;
    min-width:270px;

    background:#188A3B;

    overflow-y:auto;
    overflow-x:hidden;

    border-right:2px solid #0b6b2d;

    padding-top:15px;

}

.menu-titulo{

    background:#222;

    color:#FFD500;

    padding:14px 20px;

    font-weight:bold;

    text-transform:uppercase;

}

#sidebar .nav-link{

    color:white;

    padding:14px 20px;

    font-size:16px;

    border-bottom:1px solid rgba(255,255,255,.08);

}

#sidebar .nav-link:hover{

    background:#0b6b2d;

    color:#FFD500;

}

#sidebar .nav-link.active{

    background:#FFD500;

    color:#000;

    font-weight:bold;

}

#sidebar i{

    margin-right:10px;

}

/* ===========================
   CONTEÚDO
=========================== */

#conteudo{

    flex:1;

    margin-top:100px;

    padding:30px;

    background:#f5f5f5;

    min-height:calc(100vh - 100px);

    overflow:visible;

}

/* ===========================
   RODAPÉ
=========================== */

#footer{

    position:fixed;

    bottom:0;

    left:0;

    right:0;

    height:50px;

    background:#0b6b2d;

    border-top:4px solid #FFD500;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:0 20px;

    color:white;

    font-weight:bold;

    z-index:999;

}

.footer-esquerda{

    color:white;

}

.footer-direita{

    color:#FFD500;

}

/* ===========================
   SCROLL
=========================== */

::-webkit-scrollbar{

    width:8px;

}

::-webkit-scrollbar-thumb{

    background:#0b6b2d;

    border-radius:20px;

}

/* ===========================
   RESPONSIVO
=========================== */

@media (max-width:768px){

    #topbar{
        padding:10px 15px;
        min-height:70px;
        height:auto;
    }

    .logo{
        gap:10px;
    }

    .logoPLC{
        width:50px;
        height:50px;
    }

    .logo h3{
        font-size:18px;
    }

    .logo small{
        font-size:12px;
    }

    .utilizador{
        font-size:13px;
    }

    #layout{
        flex-direction:column;
        margin-top:80px;
    }

    #sidebar{
        width:100%;
        min-width:100%;
        height:auto;
    }

    #conteudo{
        margin-top:10px;
        padding:10px;
    }

}