.profile-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 10px;
    max-width: 300px;
}

.profile-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    
}

.profile-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.profile-name {
    color: var(--Neutral-800, #0D0D0D);
    text-align: right;
    font-size: 24.459px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 29.351px */
    padding-bottom: 13px;
}

.profile-badge {
    text-align: right;
    color: #f1c40f;
    font-size: 21.741px;
    font-style: normal;
    font-weight: 300;
    line-height: 120%; /* 26.089px */
    background: linear-gradient(155deg, #D3B15E 0%, #E3B321 30%, #C69D40 79%, #AE8740 100%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

/**************************************************************************************/
.profile-nav .nav-link {
    color: #000;
    font-weight: bold;
    padding: 10px 15px;
    cursor: pointer;
}
.profile-nav .nav-item .active {
     background-color: transparent !important;
     border: none !important;
     border-bottom: 3px solid var(--Main, #F6C174) !important;
     border-radius: 2px !important;
  
}

.profile-nav .nav-link .active {
    color: #f1c40f !important;
    border-bottom: 3px solid #f1c40f !important;
}

.profile-nav .nav-link:hover {
    color: #f1c40f !important;
}



.tab-content {
    margin-top: 20px;
    padding: 20px;
    border-radius: 16px;
    background: var(--Neutral-50, #FFF);
    box-shadow: 0px 0px 8px 0px rgba(246, 193, 116, 0.10);
}
.tab-content h5{
    color: #000;
 
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.tab-content .custom-button-upload-image{
    display: flex;
height: 40px;
padding: 12px 16px;
justify-content: center;
align-items: center;
gap: 8px;
border-radius: 8px;
background: var(--Main, #F6C174);
color: var(--Neutral-50, #FFF);
text-align: center;
font-size: 16px;
font-style: normal;
font-weight: 700;
line-height: normal;
border: none;
margin-right: 10px;
width: 114px;
}
.tab-content .custom-button-upload-image2{
    display: flex;
width: 105px;
height: 40px;
padding: 12px 16px;
justify-content: center;
align-items: center;
gap: 8px;
border-radius: 8px;
border: 1px solid var(--Erorr-500, #F04438);
    color: var(--Erorr-500, #F04438);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    background-color: transparent;
margin-right: 10px;
width: 114px;
}
.tab-content p {
    color: #000;
    text-align: right;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.nav-item p {
    color: var(--Neutral-800, #0D0D0D);
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;  
}

.input-group{
    height: 49px;
    width: 386px;
    align-self: stretch;
    flex-grow: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 8px;
    border: solid 0.5px #c4cbd4;
    position: relative;
    margin-bottom: 15px;
    margin-top: 17px;
    justify-content: center;
  }
  input {
    width: 100%;
    padding-right: 40px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    background-color: transparent;
  }
  .icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }
  .toggle-password {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
  }