/* ===== Dasboard Section ===== */

.dashboard-section {
    padding: 20px;
    margin-bottom: 40px;
}
.dashboard-section .dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--white);
    border-radius: 50px;
    padding: 20px;
}
.dashboard-section .dashboard-header .logo-box {
    margin-right: 20px;
}

/* Navigation Css */
.navigation-tabs {
    background: #F6F5F8;
    border-radius: 26px;
    max-height: 60px;
}
.navigation-tabs .nav-tabs {
    border-radius: 26px;
    border-bottom: 0;
}
.navigation-tabs .nav-tabs .nav-link {
    font-size: 17px;
    font-weight: 400;
    color: #475D64;
    padding: 15px 30px;
    transition: all 0.3s ease;
    border: none;
    border-radius: 26px;
    text-align: center;
}
.navigation-tabs .nav-tabs .nav-link:hover, .navigation-tabs .nav-tabs .nav-link:focus {
    border: none;
    outline: none;
    box-shadow: none;
}
.navigation-tabs .nav-tabs .nav-link.active {
    background: #0C1619;
    color: var(--white);
    border-radius: 26px;
}

/* Dashboard Section */
.dashboard-body {
    color: var(--black);
}
.dashboard-body .dashboard-content .welcome-box {
    position: relative;
    padding-top: 20px;
}
.dashboard-body .dashboard-content .welcome-box h4 {
    font-size: 24px;
    color: #0C1619;
    margin-bottom: 0px;
    font-weight: 400;
}
.dashboard-body .dashboard-content .welcome-box h2 {
    font-size: 73px;
    color: var(--black);
    margin-bottom: 10px;
    font-weight: 500;
}
.dashboard-body .dashboard-content .welcome-box .btn-secondary {
    height: 45px;
    border-radius: 22.5px;
    background-color: var(--black);
    color: var(--white);
    font-weight: 500;
}
.dashboard-body .dashboard-content .welcome-box .btn-tritiary {
    height: 45px;
    border-radius: 22.5px;
    background-color: #DEE3E8;
    padding: 12px;
    color: var(--black);
    font-weight: 500;
    position: absolute;
    top: 0;
}
.dashboard-body .dashboard-content .welcome-box .btn-tritiary .percentage-digit {
    color: #2F50DE;
}

.dashboard-body .dashboard-content .dashboard-cards {
    display: flex;
    align-items: flex-end;
    height: 100%;
    justify-content: space-between;
}
.dashboard-body .dashboard-content .dashboard-cards .card {
    background: none;
    border: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    row-gap: 20px;
}
.dashboard-cards .card .card-icon {
    height: 81px;
    width: 81px;
    background: white;
    border-radius: 50px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dashboard-cards .card .card-content h2 {
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 0;
}
.dashboard-cards .card .card-content p {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 0;
    color: #8A8A8A;
}

/* Job Profile Section */
.job-profile-section {
    background-color: var(--white);
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    border-radius: 41px;
    margin-top: 30px;
}
.job-profile-section .job-profile-content {
    text-align: center;
}
.job-profile-section .job-profile-content .magic-wand {
    margin-bottom: 20px;
}
.job-profile-section .job-profile-content h3 {
    font-size: 34px;
    margin-bottom: 20px;
    font-weight: 400;
}
.job-profile-section .job-profile-content .btn-secondary {
    height: 45px;
    border-radius: 22.5px;
    background-color: var(--black);
    color: var(--white);
    font-weight: 500;
}
.job-profile-section .job-profile-content .btn-secondary a {
    color: var(--white);
}

.dropdown-menu {
    border-color: #EBEBEB;
    border-radius: 24px;
    padding: 15px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
.dropdown-menu .dropdown-item {
    padding: 10px 20px;
    transition: 0.2s ease-in-out;
    border-radius: 24px;
}
.dropdown-menu .dropdown-item:hover, .dropdown-menu .dropdown-item:focus {
    background-color: #F6F5F8;
}