.main-conteiner {
    width: 18%;
    height: 100vh;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    border-radius: 0 30px 30px 0;
    transition: all 0.3s ease-in-out;
    position: fixed;
    left: 0;
    top: 0;
    box-shadow: 2px 0px 10px rgba(0, 0, 0, 0.1);
}

/* Esconder menu */
.main-conteiner.hidden {
    transform: translateX(-100%);
    opacity: 0;
}

/* Botão para esconder/exibir */
.toggle-btn {
    position: fixed;
    left: 280px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px; /* Aumentei um pouco para melhor proporção */
    height: 40px;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 100%;
    transition: all 0.3s;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.toggle-btn i {
    font-size: 20px; /* Ajustando o tamanho do ícone */
    margin: 0 auto;
}

.toggle-btn:hover {
    background-color: #0056b3;
}

/* Ajusta a posição do botão quando o menu está escondido */
.main-conteiner.hidden + .toggle-btn {
    left: 10px;
    opacity: 0.2;
}

.profile-pic {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-pic::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid rgb(58, 58, 58); /* Define a borda azul */
    box-sizing: border-box;
}

.profile-pic img {
    width: 110%;
    height: 110%;
    object-fit: cover;
}

.saudation {
    display: flex;
    align-items: center;
    text-align: center;
    line-height: 100%;
    font-size: 20px;
    font-weight: 600;
}


.rule {
    display: flex;
    justify-content: center;
}

.rule img {
    width: 90%;
    align-self: center;
}

.fi-rr-brightness{
    color: #ff8420;
    font-size: 25px;
}

.fi-rr-sunset {
    color: #ff531f;
    font-size: 25px;
}

.saudation p {
    font-size: 18px;
    font-weight: 600;
}

.saudation {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: flex-end;
    margin-top: 10px;
    margin-bottom: 7px;
    line-height: 100%;
}

.hours {
    display: flex;
    width: 90%;
    justify-content: space-between;
    font-size: 18px;
}

.hour-clock {
    display: flex;
    align-items: center;
    gap: 5px;
}

.time {
    font-weight: 600;
}

/* Inicio itens do menu */

.alteraaqui {
    text-align: center;
    margin-top: 15px;
    width: 90%;
    display: flex;
    justify-content: center;
}

.nav.flex-column {
    padding: 0;
    margin: 0;
    width: 100%;
}

.nav-item {
    list-style: none;
    margin-bottom: 5px;
    width: 100%;
}

.nav-link {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: left;
    padding: 10px;
    background: #ffffff;
    border-radius: 8px;
    color: #202020;
    font-weight: 500;
    transition: background 0.3s ease, color 0.3s ease;
}

.nav-link:hover {
    background: #007bff;
    color: white;
}

.nav-link i {
    margin-right: 8px;
}

.dropdown-menu {
    background: white;
    border-radius: 8px;
    border: 1px solid #ddd;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    width: fit-content;
}

.dropdown-menu .dropdown-item {
    color: #333;
    padding: 8px 15px;
}

.dropdown-menu .dropdown-item:hover {
    background: #007bff;
    color: white;
}

.dropdown-toggle::after {
    display: none;
}



/* Fim itens do menu */

.badge-icon {
    width: 20px;
}