.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(204, 204, 204, 0.60);
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 20px;
}

.modal-container {
    border-radius: 16px;
    background: #F5F5F5;
    box-shadow: 0px 22px 13px 0px rgba(0, 0, 0, 0.02), 0px 6px 8px 0px rgba(0, 0, 0, 0.03), 0px 1px 5px 0px rgba(0, 0, 0, 0.04);
    padding: 16px 12px;
    width: 100%;
    max-width: 460px;
    position: relative;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding: 0px 12px;
}

.inner-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.modal-title {
    color: #050505;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 4px;
}

.modal-para {
    color: #666;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 0px;
}

.modal-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0px;
}

.modal-body {
    margin-bottom: 16px;
    padding: 12px;
    border-radius: 12px;
border: 1px solid  #F0F0F0;
background:  #FFF;
}

.modal-body-para{
    color:  #666;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 24px; 
margin-bottom: 12px;
}

.form-group {
    margin-bottom: 12px;
}

.form-label {
    display: block;
    color: #333;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 8px;
}

.flag-icon {
    position: absolute;
    left: 12px;
    display: flex;
    align-items: center;
    pointer-events: none;
}

.flag-icon img {
    width: 24px;
    height: 24px;
    border-radius: 4px;
}

.select-arrow {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    pointer-events: none;
}

.modal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 12px;
}

.step-indicator {
    color: #666;
    font-size: 14px;
font-weight: 400;
line-height:  20px; 
}

.btn-group {
    display: flex;
    gap: 8px;
}

.admin-class{
    position: absolute;
    top: 12px;
    right: 12px;
    border-left: 1px solid #E6E6E6;
    padding-left: 12px;
    color:  #666;
font-size:14px;
font-weight: 400;
line-height:  20px; 

}

.success-title {
    color: #050505;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 8px;
    margin-top: 16px;
    text-align: center
    ;
}

.success-message {
    color: #666;
    font-size: 14px;
    margin-bottom: 32px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
}
/* edit-modal */
.edit-modal-body{
margin-top: 20px;}

.edit-modal-card{
    border-radius:  16px;
background: #FFF;
padding: 24px;
margin-top: 12px;
}
.modal-edit-para{
    color: #005CC8;
font-size: 12px;
font-weight: 500;
line-height:16px;
margin-bottom: 0px;
}
.edit-modal-title{
    color:  #050505;
font-size: 16px;
font-weight: 500;
line-height: 24px; 
letter-spacing: 0px;
margin-bottom: 0px;
}
.grid-class{
    margin-top: 24px;
}
.grid-heading{
    color:  #050505;
font-size: 12px;
font-weight: 500;
line-height: 16px;
margin-bottom: 0px;
}
.grid-para{
    color:  #666;
font-size: 12px;
font-weight: 400;
line-height: 16px;
margin-bottom: 0px;
margin-top: 4px;
}
.edit-modal-container{
    border-radius: 16px;
    background: #F5F5F5;
    box-shadow: 0px 22px 13px 0px rgba(0, 0, 0, 0.02), 0px 6px 8px 0px rgba(0, 0, 0, 0.03), 0px 1px 5px 0px rgba(0, 0, 0, 0.04);
    padding: 20px 12px;
    height: calc(100vh - 16px);
    overflow-y: auto;
    width: 100%;
    max-width: 560px;
    position: relative;
}
.modal-overlay-edit {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(204, 204, 204, 0.60);
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 1000;
    padding: 8px;
}