.navbar {
    border-bottom: 2px solid #85ff9f;
    width: 100%; 
}


.logo {
    border-radius: 50%;
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.text-green {
    color: #28a745 !important;
    font-size: 16px !important;
    margin-right: 20px !important;
    position: relative;
}

.text-green:hover {
    color: #218838 !important;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu {
    border-top: 2px solid #28a745;
}

.dropdown-item {
    color: #28a745 !important;
    padding: 10px 20px !important;
}

.navbar-nav .nav-item:hover .nav-link, 
.navbar-nav .nav-item.active .nav-link {
    border-bottom: 3px solid #28a745;
    padding-bottom: 5px; 
}


.navbar-nav .nav-item.active .nav-link {
    background-color: #eaf7e1; 
    border-radius: 5px; 
}

.pls {
    display: inline-flex; 
    justify-content: center;
    align-items: center;
    width: 90px; 
    height: 50px;
    background-color: #28a745; 
    color: white; 
    font-size: 20px; 
    text-decoration: none; 
    border-radius: 30px; 
    border: none; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
    transition: all 0.3s ease; 
}


.pls:hover {
    background-color: #218838; 
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
    transform: scale(1.1); 
}


.pls:focus {
    outline: 2px solid #1e7e34; 
}

.navbar-nav .nav-item {
    margin-right: 30px;
}

@media (max-width: 768px) {
    .navbar-nav .nav-link {
        font-size: 1.3rem;
        margin-right: 10px;
    }

    .pls {
        width: 100%; 
        height: 40px;
        font-size: 20px;
    }

    .logo {
        width: 50px; 
        height: 50px; 
    }

    .navbar-nav {
        width: 100% ;
        text-align: center;
    }

    .navbar-nav .nav-item {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .container-fluid {
        margin-left: 10px;
        margin-right: 10px;
    }
}

.pagina body {
    font-family: 'Poppins', sans-serif;
    background: #fff; 
    padding-top: 20px;
    min-height: 100vh;
    color: #333; 
    margin: 0;
}

#titolo {
    color: #28a745;
}

.form-logout {
    all:unset;
}

.pls p {
    margin-bottom: 0;
    padding-bottom: 4px;
}

@media(min-width:769px){

    .container-fluid {
        margin-left: 30px !important;
        margin-right: 30px !important;
    }

}