body {
    padding: 0;
    margin: 0;
    display: flex;
    font-family: 'Arial', sans-serif;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f0f3f5;
}

.option-content {
    height: 70%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin-top: 5px;
}
/* 
.container-fluid {
    padding: 15px;
} */

.left-options{
    width: 20%;
    height: 100vh;
    background-color: rgb(7, 7, 85);
}
.left-options a {
    color: #fff;
}


.links{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;padding-right: 20px;
    height: 50%;
    width: 100%;
}

.links li:hover{
    transform: scale(1.1);
}

.links li a:hover{
    color: wheat;
}

.links li{
    list-style: none;
}

.option-content a{
    text-decoration: none;
    color: white;
    font-size: 15px;
}
.option-content h2 a{
    font-size: 30px;
}

.main{
    width: 80%;
    height: 100vh;
    background-color: #c9c7c7cc;
    /* border: 1px solid purple; */
    display: flex;
    flex-direction: column;
}
.title{
    width: 100%;
    height: 10vh;
    /* padding: 5px; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 5px;
    background: white;
    /* border: 1px solid goldenrod; */
}
.main-body{
    width: 98%;
    margin: 10px 10px;
    /* border: 1px solid rgb(66, 39, 139); */
}

.dash-actions {
    display: flex;
    align-items: center;
}

.profile-details {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.profile-image img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.profile-name {
    margin: 0;
}

.mentor-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.mentor-item {
    background-color: #fff;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    overflow: hidden;
    width: 300px;
}

.mentor-image img {
    width: 100%;
}