.sidebar {
    height: 100%;
    width: 70px;
    position: fixed;
    top: 70px;
    left: 0;
    background-color: #fff; /* White background */
    padding-top: 20px;
}

.sidebar a {
    padding: 20px;
    text-decoration: none;
    color: #333; /* Text color */
    display: block;
}

.sidebar a:hover {
    background-color: #eee; /* Hover background color */
}
@media (max-width: 767px) {
    .sidebar {
        display: none;
    }
}

.navbar.fixed-top {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 0;
}

body.menu-expanded {
    margin-top: 100px; /* Adjust this value according to your navbar height */
    transition: margin-left 0.3s ease-in;
}

.search-bar {
    width: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

form.search-bar input[type="text"] {
    padding: 10px;
    font-size: 14px;
    border: none;
    float: left;
    width: 90%;
    background: #f6f6fe;
    border-radius: 0 10px 10px 0;
}

form.search-bar button {
    float: left;
    width: 10%;
    padding: 10px;
    background: #f6f6fe;
    color: #9294a8;
    font-size: 14px;
    border: none;
    cursor: pointer;
    border-radius: 10px 0 0 10px;
}

form.search-bar button:hover {
    background: #0b7dda;
}

form.search-bar::after {
    content: "";
    clear: both;
    display: table;
}

/* team search btn */
.team-search-btn {
    padding: 10px;
    background: #e33d47;
    border: none;
    border-radius: 10px;
    justify-content: center;
    align-items: center;
    display: inline-flex;
    color: white;
    font-size: 14px;
    font-weight: 400;
    word-wrap: break-word;
}
.team-clear-btn {
    padding: 10px;
    background: #4c5056;
    border: none;
    border-radius: 10px;
    justify-content: center;
    align-items: center;
    display: inline-flex;
    color: white;
    font-size: 14px;
    font-weight: 400;
    word-wrap: break-word;
}
.team-advance-btn {
    padding: 10px;
    background: #28c882 !important;
    border: none;
    border-radius: 10px !important;
    justify-content: center;
    align-items: center;
    display: inline-flex;
    color: white;
    font-size: 14px;
    font-weight: 400;
    align-self: flex-end;
}
.team-advance-btn:hover {
    color: darkgreen !important;
}

@media (max-width: 767px) {
    .team-search-btn {
        width: 100%;
        margin-bottom: 10px;
    }
    .team-clear-btn {
        width: 100%;
        margin-bottom: 10px;
    }
    .team-advance-btn {
        width: 100%;
        margin-top: 10px;
    }
}
.team-card-btn {
    padding: 10px !important;
    background: #e33d47 !important;
    border: none !important;
    border-radius: 10px !important;
    justify-content: center !important;
    align-items: center !important;
    display: inline-flex !important;
    color: white !important;
    font-size: 14px !important;
}
form.write-post input[type="text"] {
    padding: 10px;
    font-size: 14px;
    border: none;
    width: 100% !important;
    background: #f6f6fe;
    border-radius: 10px;
    flex: 1;
}
@media (max-width: 767px) {
    .search-bar {
        max-width: 300px !important;
    }
}
.nav-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
}
.icon-button {
    background: #fff;
    padding: 0;
    border: none;
}
.icon-button:hover {
    cursor: pointer;
}
.icon-button img {
    border: none !important;
    height: 24px !important;
    width: 24px !important;
}
@media (max-width: 767px) {
    .nav-icons {
        width: 300px;
        justify-content: space-around;
    }
}

/* about section */
.title {
    color: #2e2e4c;
    font-size: 16px;
    font-weight: 700;
    word-wrap: break-word;
    background: #fff;
    border-radius: 0px;
}
.card-footer {
    width: 100%;
    left: 0;
    text-align: center;
    background: #e5f0ff;
    font-size: 14px;
    font-weight: 500;
    word-wrap: break-word;
    cursor: pointer;
}
.card-footer a {
    font-weight: 600;
    color: #005dd9 !important;
}
.card-border {
    border-bottom: 1px solid #ccc;
    position: relative;
    border-radius: 0px;
}

.card-border::after {
    content: "";
    position: absolute;
    width: 20%;
    height: 2px; /* Adjust this value for the green border's height */
    background-color: #8fe971;
    bottom: 0;
    left: 0;
}

.line {
    width: 80%;
    height: 80%;
    align-center: center;

    border: 1px #eeeeee solid;
}
.following {
    color: #2e2e4c;
    font-size: 18px;
    text-transform: uppercase;
    word-wrap: break-word;
}
.following > span {
    color: #2e2e4c;
    font-weight: 700;
}
.following > p {
    color: #6d6d83;
    font-weight: 500;
}

.card {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border: none;
}
.about-card {
    min-width: 500px; /* Default minimum width */
    /* Media query for smaller screens */
    @media (max-width: 768px) {
        min-width: 200px; /* Adjust the minimum width for smaller screens */
    }
}
.job-listing-card {
    min-width: 300px; /* Default minimum width */
    max-width: 100%; /* Default minimum width */
    /* Media query for smaller screens */
    @media (max-width: 768px) {
        min-width: 200px; /* Adjust the minimum width for smaller screens */
    }
}

.banner-card {
    border-radius: 10px 10px 10px 10px;
}
@media (max-width: 767px) {
    .banner-buttons-justify {
        justify-content: start;
    }
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-radius: 10px 10px 0px 0px !important;
}

.company-name,
.post-time {
    display: inline-block;
}
.post-header {
    padding: 10px;
}

.post-header h3 {
    color: #3d3d3d;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 0;
}

.post-header p {
    color: #636b73;
    font-size: 12px;
    font-weight: 400;
}

.job-item {
    display: flex;
    flex-direction: row;
    margin-bottom: 10px;
    align-items: center; /* Center items vertically */
}

.job-item img {
    width: 60px;
    height: 60px;
    border: 1px solid #ccc;
    border-radius: 10px;
    margin-right: 10px; /* Add margin to separate image from content */
}

.job-item h3 {
    color: #3d3d3d;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 0;
}

.job-item p {
    color: #636b73;
    font-size: 12px;
    font-weight: 400;
}

@media (max-width: 767px) {
    .job-item {
        flex-direction: column;
    }
    .job-item img {
        width: 60px; /* Adjust the image width for smaller screens */
        height: 60px; /* Adjust the image height for smaller screens */
        margin-right: 0; /* Remove margin for smaller screens */
        margin-bottom: 10px;
        margin: 0;
    }
}

.profiles {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
/* .profiles > div{
    flex
} */
@media (max-width: 767px) {
    .profiles > div {
        flex-direction: column;
        width: 100%;
    }
    .profiles {
        flex-direction: column;
    }
}
.emojis {
    font-size: 15px;
    max-width: 70px;
    width: 100%;
}
@media (max-width: 767px) {
    .emojis {
        display: none;
    }
}

.ellipse {
    width: 30px;
    height: 30px;
    margin-left: -10px;
    border-radius: 50%;
    object-fit: cover;
}
@media (max-width: 767px) {
    .ellipse {
        margin-left: 0px;
    }
}
.comments {
    /* width: 100%; */
    text-align: right;
    color: #6d6d83;
    font-size: 13px;
    font-weight: 400;
}
@media (max-width: 767px) {
    .comments {
        width: 100%;
        text-align: left;
    }
}

.text-info {
    color: #2e2e4c !important;
    font-size: 13px;
}

.more-icon {
    float: right;
    font-size: 16px;
    color: #000;
}

/* tabs styling */

.custom-tabs {
    display: flex;
    border-bottom: 0 solid transparent; /* Initial transparent underline */
}
.nav-tabs .nav-item .nav-link {
    background-color: #fff;
    border-bottom: 1px solid #ccc;
    color: #6d6d83;

    font-size: 15px;
    font-weight: 400;
    /* flex: 1; */
    text-decoration: none;
}

.custom-tabs .nav-link.active {
    border-bottom: 5px solid #8fe971;
    color: #2e2e4c;
    font-size: 15px;
    font-weight: 700;
}

.custom-tabs .nav-link {
    text-decoration: none;
    color: #333; /* Tab text color */
    padding: 10px; /* Adjust padding as needed */
    border: none;
    line-height: 2.5rem;
}

/* buttons */
.btn-primary {
    width: auto; /* Let the button size adapt to the text */
    min-width: 120px;
    background-color: #005cd8;
    border-radius: 30px;
    border: none;
}

.btn-primary:hover {
    background-color: #e5f0ff;
    color: #005cd8;
}
.btn-secondary {
    height: 45px;
    background-color: #e5f0ff;
    border-radius: 30px;
    border: none;
    color: #005cd8;
}
.btn-secondary:hover {
    background-color: #005cd8;
    color: #fff;
}

/* menu */
.menu-item {
    color: #3d3d3d;
    font-size: 14px;
    font-weight: 700;
}
.menu-item:hover {
    background-color: #e5f0ff;
    cursor: pointer;
}
.menu-item:first-child:hover {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.menu-item:last-child:hover {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

/* no user found */
.no-user {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.no-user img {
    width: 100px;
    height: 100px;
}
.no-user p {
    text-align: center;
    color: #6d6d83;
    font-size: 15px;
    font-style: italic;
    font-weight: 400;
    word-wrap: break-word;
}

/* suggestions */
.suggestion-item {
    margin-bottom: 10px;
}
.suggestion-item h4 {
    color: #6d6d83;
    font-size: 10px;
    font-weight: 600;
}
.suggestion-item img {
    height: 40px;
    width: 40px;
}
.suggestion-icon {
    background: #e5f0ff;
    border-radius: 50%;
}
.group-item {
    margin-bottom: 10px;
}
.group-item h4 {
    color: #2e2e4c;
    font-size: 10px;
    font-weight: 700;
}
.group-item img {
    height: 40px;
    width: 40px;
}
.suggestion-icon {
    background: #e5f0ff;
    border-radius: 50%;
}
/* chips */
.chip {
    color: #5e43ae;
    font-size: 0.8125rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border-radius: 1.5625rem;
    background: #ede7ff;
    padding: 5px 5px;
}
/* wall pagė */
.winner-card-image {
    position: relative;
}

.winner-card-name-container {
    position: absolute;
    bottom: 0;
    width: 100%;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    text-align: center;
    background-color: #f4d687 !important;
}

.winner-card-name-container h5 {
    margin: 0;
    padding: 10px;
    color: #2e2e4c;
    font-size: 14px;
    font-weight: 700;
}

.winner-card-info {
    margin-top: 10px;
}

.new-openings-card {
    width: 100%;
    height: 100%;
    background: #f6f8fa;
    border-radius: 10px;
    box-shadow: none;
}
.arrows i:hover {
    cursor: pointer;
}
.profile-card-info h4 {
    color: #2e2e4c;
    font-size: 14px;
    font-weight: 700;
    word-wrap: break-word;
}

/* birthday card */
.birthday-card img {
    width: 40px;
    height: 40px;
}
.birthday-card p {
    color: #2e2e4c;
    font-size: 14px;
    font-weight: 400;
    word-wrap: break-word;
    line-height: 1;
}

/* updates and mentions */
.updates-card {
    /* remove all initial card styling */
    box-shadow: none;
    border: none;
    background: #f7f7fc;
}

/* toggle button */
.toggle-container {
    width: 40px;
    height: 20px;
    background-color: #ccc;
    border-radius: 20px;
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.toggle-dot {
    width: 18px;
    height: 18px;
    background-color: #000;
    border-radius: 50%;
    position: absolute;
    left: 2px;
    /* transition: transform 0.3s ease-in; */
    /* smooth transition */
    transition: transform 0.3s ease-in-out;
    transform: translateX(0);
}

.active-filter-options .toggle-dot {
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}
/* pagination */
.pagination {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination li {
    margin: 5px;
}

.pagination a {
    text-decoration: none;
    background-color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    color: #2e2e4c;
    font-size: 14px;
    font-weight: 700;
}
.pagination a:hover {
    background-color: #e33d47;
    color: #fff;
}
.pagination li:first-child a:hover {
    color: #e33d47;
    background-color: #fff;
}

.pagination li:last-child a:hover {
    /* Add your styles here */
    color: #e33d47;
    background-color: #fff;
}

.company-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    width: 164px;
    height: 164px;
    margin-top: -10%;
    position: relative;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 10px;
    margin-right: 10px;
}
.company-logo-container img {
    width: 164px;
    height: 164px;
}
.company-icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    width: 50px;
    height: 50px;
    /* position: relative; */
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 10px;
    margin-right: 10px;
}
