--accent-blue: #1a73e8;

*{box-sizing: border-box; margin:0 auto;}


body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    display: flex; /* Keeps sidebar and container side-by-side */
    height: 100vh; /* Lock to screen height */
    overflow: hidden; /* Prevent the body itself from scrolling */
}

.row::after {
    content: "";
    clear: both;
    display: block;
}

.colunasp {
    float: left;
    padding: 3px;
    text-align: center;
}
.coluna {
    float: left;
    padding: 15px;
    text-align: center;
}
.col-1  {width: 8.33%;}
.col-2  {width: 16.66%;}
.col-3  {width: 25%;}
.col-4  {width: 33.33%;}
.col-5  {width: 41.66%;}
.col-6  {width: 50%;}
.col-7  {width: 58.33%;}
.col-8  {width: 66.66%;}
.col-9  {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}
@media only screen and (max-width: 768px){.coluna{width: 100%;} .colunasp{width: 100%;}}

/* 1. The Main Content Area (Right Side) */

.main-content {
    flex-grow: 1;
    align-items: center;
    overflow-y: auto;
}

main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    margin-top: -50px; /* Adjust center slightly upward */
}

.content-container {
    flex-grow: 1; /* Occupy remaining space */
    display: flex;
    flex-direction: column;
}

.vertical-menu {
    width: 70px;
    height: 100vh; /* Sidebar spans full height */
    background-color: white;
    border-right: 1px solid #dfe1e5;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 15px;
    flex-shrink: 0; /* Prevent sidebar from squishing */
    z-index: 100;
}


.menu-item {
    width: 40px;
    height: 40px;
    margin-bottom: 25px; /* Space between items */
    background-color: transparent;
    cursor: pointer;
    border-radius: 10%; /* Make hover area round */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
    text-decoration: none;
    display: flex;
    flex-direction: column; /* Stacks children vertically */
    color: #5f6368;
}

.menu-item:hover {
    background-color: #f8f9fa; /* Standard light gray hover */
}

.menu-item.active {
    color: #fcba03;
}
.menu-item.active .material-icons {
    color: #fcba03;
}


.menu-text {
    font-size: 11px; /* Smaller font for a "tab" look */
    margin-top: 4px;
    font-weight: 500;
    text-decoration: none;
}

.material-icons {
    color: #000000;
    font-size: 26px; /* Default size is 24px */
}

.mobile-toggle {
    display: none;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 110;
    cursor: pointer;
    padding: 5px;
}

.menu-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 90;
}

@media (max-width: 768px) {
    .mobile-toggle { display: block; }

    .vertical-menu {
        position: fixed;
        left: -100%;
        width: 250px;
        transition: 0.3s;
    }

    .vertical-menu.open {
        left: 0;
    }

    .menu-overlay.active {
        display: block;
    }

    .menu-item {
        flex-direction: row;
        width: 100%;
        justify-content: flex-start;
        padding: 15px;
        margin-bottom: 0;
    }

    .menu-text {
        margin-left: 15px;
        font-size: 14px;
    }
}