/* Reset default margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Ensure no extra margin on body */
body {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    /* background-color: #f3f3f3; */
}

ul > li {
    cursor: pointer;
}

/* Styling for navbar */
.navbar {
    background-color: #2097F6;
    padding: 10px;
    /* Adjust padding as needed */
    width: 100%;
    /* background: yellow; */
}
.wrapper {
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    margin: 0 auto;
    /* padding: 10px 0; */
}

section nav.nav-menu {
    padding: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    /* height: ; */
}

nav.nav-menu ul.nav-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
li.nav-menu_items > ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

li#nav-logo {
    text-transform: uppercase;
    font-weight: 600;
    color: hsl(0, 0%, 100%);
    border-bottom: 3px solid currentColor;
}
li.nav-menu_items > ul > li {
    font-size: 1.25rem;
    text-transform: capitalize;
    color: #fff;
    padding: 3px 8px;
    border-radius: 5px;
    transition: .3s linear;
    position: relative;
}
li.nav-menu_items > ul > li.active_li {
    background: #ffffff83;
    color: hsl(0, 0%, 0%);
    font-weight: 700;
}
li.nav-menu_items > ul > li:hover {
    background: #ffffff83;
    color: hsl(0, 0%, 0%);
    font-weight: 700;
}

/* Add styling to remove list-style */
.nav-list,
.nav-links,
.icon-list {
    list-style-type: none;
}
li.nav-menu_items > ul > li > .nav-item_text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
}
.user-avatar-profile {
    width: 80px;
    border-radius: 100%;
}

#alumni_count, #open_forum, #total_referral {
    color: hwb(0 100% 0%);
    font-size: 10px;
    background: red;
    width: 15px;
    height: 15px;
    text-align: center;
    justify-content: center;
    align-items: center;
    display: flex;
    border-radius: 100%;
}


.alumni_view > .wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Default to 4 columns */
    gap: 1rem;
    padding: 10px; /* Added padding to center the grid */
}

/* Responsive styles */
@media (max-width: 1200px) {
    .alumni_view > .wrapper {
        grid-template-columns: repeat(3, 1fr); /* 3 columns */
    }
}

@media (max-width: 900px) {
    .alumni_view > .wrapper {
        grid-template-columns: repeat(2, 1fr); /* 2 columns */
    }
}

@media (max-width: 600px) {
    .alumni_view > .wrapper {
        grid-template-columns: 1fr; /* 1 column */
    }
}

.alumni_card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    position: relative;
    border-bottom: 5px solid #2097F6;
    box-shadow: 0px 0px 5px hsla(0, 0%, 0%, 0.452);
    margin: auto; /* Center the card in its grid cell */
}

/* Optional: to ensure the cards have a max-width and are centered */
@media (max-width: 400px) {
    .alumni_card {
        max-width: 90%; /* Set a max-width to allow for some margin */
    }
}


.status {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #2097F6;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8em;
}
.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-top: 10px;
}
.alumni_name {
    font-size: 1.5em;
    font-weight: bold;
    margin: 10px 0 5px;
}
.alumni_designation {
    font-size: 1em;
    color: #666;
    margin-bottom: 20px;
}
.details {
    background-color: #f0f2f5;
    padding: 15px;
    border-radius: 10px;
    text-align: left;
    font-size: 0.9em;
    color: #333;
}
.details .highlighted {
    text-transform: uppercase;
    font-weight: 700;
    background: hwb(0 0% 100%);
    display: inline-block;
    margin: 0;
    color: #fff;
}
.details .label {
    border: 1px solid rgb(160, 160, 160);
    display: inline-block;
    /* margin: 0; */
    background: hsl(0, 0%, 100%);
    padding: 0 5px;
    border-radius: 5px;
}
.details span {
    display: inline-block;
    /* align-items: center; */
    /* justify-content: center; */
    /* align-items: center; */
    /* margin-top:1px; */
    text-align: center;
}
.details span svg {
    text-align: center;
    padding-top: 2px;
}

.details div {
    margin: 5px 0;
}
.details a {
    color: #1e88e5;
    text-decoration: none;
}
.details button {
    background-color: blue;
    border: none;
    border-radius: 1.2rem;
    padding: .25rem .5rem;
}
.details button>a {
    color: white;
}
.footer {
    margin-top: 15px;
    color: #666;
    font-size: 0.9em;
}


.search{
    width: 75%;
    margin: auto;
    border: 1px solid rgb(255, 255, 255);
    border-radius: 5px;
    border: 2px solid #d5d5d5;
    display: flex;
    align-items: center;
    padding: 10px;
    background: white;
    box-shadow: rgba(0, 0, 0, 0.089) 0px 5px 15px;
    width: 100%;
}

.search input{
    width: 75%;
    padding: 0;
    border: none;
    outline:none;
    margin-left: 10px;
    font-family: inherit;
    font-weight: 500;
    font-size: 1rem;
}

.search button{
    width: 10%;
    padding: 0;
    border: none;
    outline:none;
    font-size: 25px;
    margin: auto;
    margin-right: 0;
    color: rgb(139, 139, 139);
    background: white;

}
@media only screen and (max-width: 600px) {
    .search {
        width: 100%;
        flex-wrap: wrap;
    }
    .search select {
        width: 100%;
    }
}
