.login-btn {
    margin-top: 7px;
    display: flex;
    gap: 8px;
    height: 27px;
}

.login-btn span {
    width: 28px;
    height: 28px;
    display: grid;
    place-content: center;
    margin-top: -1px;
}

.social-btn {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 16px;
    text-decoration: none;
    transition: 0.3s ease-in-out;
    margin-top: 5px;
}

.facebook {
    background-color: #1877f2;
    /* Facebook Blue */
    color: white;
}

.instagram {
    background-color: #e4405f;
    /* Instagram Pink */
    color: white;
}

.youtube {
    background-color: #ff0000;
    /* YouTube Red */
    color: white;
}

.linkedin {
    background-color: #0077b5;
    /* LinkedIn Blue */
    color: white;
}

.social-btn:hover {
    opacity: 0.8;
    transform: scale(1.1);
}

figure img {
    object-fit: cover;
    border: 1px solid #eaeaea;
    border-radius: 7px;
}

.size-80 {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.h-100 {
    height: 100% !important;
}

.start-100 {
    left: 95% !important;
}

.nav-link {
    color: #111;
}

.navbar-nav .dropdown-toggle::after {
    display: none !important;
}

/* Add a vertical bar after each link on desktop devices only */
@media (min-width: 992px) {
    .navbar-nav .nav-item:not(:last-child) .nav-link::after {
        content: "|";
        color: #000;
        /* Change color as needed */
        margin-left: 20px;
        /* Adjust spacing as needed */
        margin-right: 0px;
        /* Add right margin to avoid overlapping with caret */
    }

    /* Remove the bar for dropdown items */
    .navbar-nav .dropdown-menu .dropdown-item::after {
        content: none;
    }
}

@media (max-width: 992px) {
    .navbar-nav .nav-link {
        background: #e6e6e6;
        padding-left: 20px;
        margin-bottom: 2px;
    }
}

.dropdown-menu {
    border-radius: unset;
    padding: 0px;
}

.dropdown-item {
    margin-bottom: 3px;
    font-size: 18px;
    color: #111;
    font-weight: 700;
    background: #e6e6e6;
    padding: 8px 20px;
}

.form-control:focus {
    border-radius: 25px;
}

