/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 13/03/2021, 20:37:20
    Author     : robson
*/
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    padding-bottom: 60px; /* Espaço para o menu inferior */
    position: relative;
}

/* Criar novo contexto de empilhamento */
.calendar-wrapper {
    position: relative;
    z-index: 1;
}

.navbarButton {
    overflow: visible;
    background-color: #0a2d66;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    padding: 5px 0;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: transform;
}

.navbarButton ul {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.navbarButton a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f2f2f2;
    text-align: center;
    padding: 10px 16px;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 0 5px;
}

.navbarButton a:hover {
    background: rgba(242, 242, 242, 0.1);
    color: white;
    transform: translateY(-3px);
}

.navbarButton a.active {
    background-color: #064ba0;
    color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.navbarButton svg {
    width: 1.5em;
    height: 1.5em;
}

/* Ajustes para telas menores */
@media (max-width: 768px) {
    body {
        padding-bottom: 70px;
    }
    
    .navbarButton a {
        padding: 8px 12px;
        margin: 0 2px;
    }

    .navbarButton svg {
        width: 1.2em;
        height: 1.2em;
    }
}

.main {
    padding: 16px;
    margin-bottom: 30px;
}