.container {
    max-width: 1140px !important;
    width: 100% !important;
}

.top-bar-section {
    background-color: #0098da;
    min-height: 191px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-bar-section h3 {
    color: #fff;
    font-size: 31px;
    font-weight: 700;


}


.active-link {
    background-color: #0098da;
    color: #fff !important;
}

/* 
    dashboard */

.dashboard-custom-container{
    max-width: 1600px;
    width: 90%;
    margin: 0 auto;
}

.dashboard-section {
    padding: 40px 0;
}



.dashboard-right-container {
    display: flex;
    flex-direction: column;
}

.dashboard-link {
    padding: 10px 15px;
    border-bottom: 1px solid #ccc;
    cursor: pointer;
}


.dashboard-link:hover {
    background-color: #d6dbde;
}

.dashboard-content {
    min-height: 550px;
    height: fit-content;
    overflow-y: auto;
    background-color: #fff;
    box-shadow: 0px 0px 10px #ccc;
    padding: 10px 20px;
}



.dashboard-card{
    width: 100%;
    background-color: #fff;
    box-shadow:  0 0 12px #00000025;
    border-radius: 10px;
    padding: 20px;
    font-family: "Roboto", serif !important;
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 20px;
}

.dashboard-card-value{
    font-size: 2.1rem;
    font-weight: bold;
    margin-bottom: -6px;
   
}

.dashboard-icon-wrap{
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-icon-wrap img{
    width: 25px;
}

.profile-detail-wrapper {

    margin-top: 30px;
}

.profile-img-wrapper {
    background-color: #0098da;
    height: 80px;
    padding-top: 10px;
}

.circle-img-wrapper {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto;
    margin-top: 10px;
    overflow: hidden;
}

.circle-img-wrapper img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}


h6 {
    margin-bottom: 5px !important;
    font-size: 17px !important;
}


.products-wrapper {
    margin-top: 40px;
}


.profile-form-wrapper{
    margin-top: 40px;
}

.profile-form-input{
    width: 100%;
    padding: 7px 10px;
    border-radius: 7px;
    border: 1px solid #3d3d3d49;
    margin-bottom: 20px;
}

.profile-form-btn-wrapper{
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.back-btn{
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 7px 12px;
    transition: all 0.6s;
    background-color: #fff;
}

.back-btn:hover{
    background-color: var(--primary-color);
    color: #fff; 
}


.profile-submit-btn{
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: #fff;
    padding: 7px 12px;
    transition: all 0.6s;
}

.profile-submit-btn:hover{
    filter: brightness(0.9);
}



@media screen and (max-width: 991px) {
    .dashboard-content {
        margin-top: 30px;
    }

    .dashboard-container {
      height: 100% !important;
    }
}