/* html,
body {
    height: 100%;
    font-family: 'Ubuntu', sans-serif;
} */

/* .gfg {
    height: 50px;
    width: 50px;

} */

.mynav {
    color: #fff;
}

#logout,
.mynav li a {
    color: #ffffff;
    text-decoration: none;
    width: 100%;
    display: block;
    border-radius: 5px;
    padding: 8px 5px;
}

.mynav li a.active {
    background: rgba(255, 255, 255, 0.2);
}

.mynav li a:hover,
#logout:hover {
    background: rgba(255, 255, 255, 0.2);
}

.mynav li a i {
    width: 25px;
    text-align: center;
}

.notification-badge {
    /* background-color: rgba(255, 255, 255, 0.7); */
    float: right;
    /* color: #222; */
    font-size: small;
    font-weight: bold;
    padding: 0px 8px;
    /* border-radius: 2px; */
}

.btn-link:hover {
    background: rgba(255, 255, 255, 0);
}

#logout {
    width: 100%;
    /* height: 40px; */
    padding: 0px 0px !important;
    /* text-align: left !important; */
    font-weight: bold;
}

.profile-card {
    max-width: 340px;
    /* background-color: #f8f9fa; */
}

.profile-img {
    width: 100%;
    /* height: 150px; */
    object-fit: fill;
}

.card-title {
    font-size: 1.3rem;
}

.role {
    font-size: 0.8rem;
}

.list-group-item:hover {
    /* background-color: #5ddd4c; */
    color: #000000;
}


.contact-card {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    min-width: 300px;
    max-width: 500px;

    /* max-width: 100%; */
    /* width: 300px; */

}

@media all and (max-width: 995px) {
    .contact-card {
        width: 300px;
    }
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.social-icon {
    transition: all 0.3s ease;
    cursor: pointer;
}

.social-icon:hover {
    transform: scale(1.2);
}