* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* for nav */
nav.main-nav {
    background-color: #008900;

    padding: 5px;

}


nav .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}




nav .nav-container .links .nav-link {
    padding: 0 10px 0 10px;
}

nav ul .links .nav-link {
    display: inline-block;
    color: white;
    font-size: 1.2rem;
    /* border: 1px solid black; */

}


nav ul .logo {
    width: 120px;
    margin-bottom: 2px;
    /* border: 1px solid black; */

}



/* for the dropdown */
.nav-link .dropdown {
    position: relative;


}

#applicationLink:hover {
    cursor: pointer;
    color: yellow;
}

.dropdown .dropdown-content {
    display: none;
    position: absolute;
    background-color: #008900;
    min-width: 160px;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content li {
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Change the color of the links on hover */
.dropdown-content li:hover {
    background-color: #ddd;
    color: green;
    cursor: pointer;
}

/* Show the dropdown content when hovering over the "Applications" link */
.dropdown:hover .dropdown-content {
    display: block;
}

.ict-team {
    border: 1px solid black;
}

.glide__slide .ict-team {
    margin: 0 10px;
    /* Adjust margin as needed */
}

.glide__slide .ict-team {
    max-width: 100%;
    /* Reset image size to 100% width */
    transition: transform 0.3s;
    /* Add a transition effect */
}

.glide__slide.glide__slide--active .ict-team {
    transform: scale(1.4);
    background-color: green;
    color: white;
}

.glide__slide {
    min-height: 100px;
    /* Set an appropriate minimum height */
    padding: 10px;
    /* Adjust padding as needed */
}

.glide {
    height: auto;
}

.glide-button {
    border: 1px solid black;
}

.nav-button:hover {
    color: yellow;
    cursor: pointer;
}

table.budget-tbl,
table.budget-tbl tr td,
table.budget-tbl thead tr th {
    border: 1px solid rgb(22 163 74);
    padding: 15px;
    text-align: center;
}

span.span-user {
    border: 1px solid rgb(161 98 7);
}

@media screen and (max-width: 600px) {
    nav .nav-container{
        margin: 0 10px 0 10px;
    }
    nav ul .logo{
        margin-bottom: 5px;
    }
    nav ul .logo a,
    nav ul .links .nav-link {
        display: block;
        width: 100%;
    }

    nav .nav-container {
        display: block;
        align-items: center;
      
    }

    .nav-link .dropdown {
        position: static;


    }

    .dropdown .dropdown-content {
        display: block;
        position: static;
        box-shadow: none;
        font-size: .9em;
        color: yellow;

        
    }

    /* for border bottom */
    nav .nav-container .links .nav-link{
        border-bottom: 2px solid gray;
        margin-bottom: 10px;
    }

}

#homeBackground{
    background: url('./img/ict.png');
}


