.approval-status-modal .modal {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
  overflow: hidden;
  z-index: 1055;
}

.approval-status-modal .modal-body {
  padding: 0;
}

.approval-status-modal .modal-dialog {
  margin: auto;
  transform: none;
  top: auto;
  left: auto;
  max-width: 660px;
  width: 100%;
}

.approval-status-modal .modal-content {
  background-color: #fff;
  border-radius: 12px;
  width: 100%;
  max-width: 660px;
  min-height: 390px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  border: 1px solid #f0f0f0;
  text-align: center;
  transition: all 0.25s ease-out;
  padding: 16px 24px;
  margin-top:25px;
}

.approval-status-modal.modal.show {
  padding-left: 0;
  padding-right: 0;
}

body.modal-open {
  overflow: hidden;
  padding-right: 0;
}

.approval-status-modal .modal-header {
  border-bottom: 0;
  text-align: center;
  justify-content: flex-end;
}

.approval-status-modal .modal-header .btn-close {
  background: transparent;
  font-size: 20px;
  font-weight: bold;
  color: #000;
  opacity: 0.7;
}

.approval-status-modal .modal-header .btn-close:hover {
  opacity: 1;
}

.approval-status-modal .modal-body {
  padding: 0;
}

.approval-status-modal .power-title-text {
  color: #414141;
  font-size: 34px;
  font-weight: 900;
  font-family: "ProximaNova-ExtraBold";
  margin-bottom: 24px;
}

.approval-status-modal .funding-modal-section p {
  color: #414141;
  font-size: 18px;
  word-wrap: break-word;
}

.approval-status-modal .modal-footer {
  border-top: 0;
  justify-content: center;
  margin-top: 3px;
}

.approval-status-modal .btn-primary {
  background-color: #ff6c00;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 0px 64px;
  font-size: 18px;
  height: 50px;
  min-width: 220px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.approval-status-modal .btn-primary:hover {
  background-color: #e55a2b;
}

.approval-status-modal.modal.show {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

@media (max-width: 767px) {
  .approval-status-modal .modal-content {
    padding: 20px 16px;
    margin: 16px;
    height: auto;
  }

  .approval-status-modal .power-title-text {
    font-size: 24px;
  }

  .approval-status-modal .funding-modal-section p {
    font-size: 16px;
  }

  .approval-status-modal .btn-primary {
    padding: 12px 28px;
    min-width: 200px;
  }
}


.approval-success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1031;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    overflow: hidden;
    overscroll-behavior: contain;
  }

  .seller-led-center .approval-success-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto;
    min-height: 390px;
    text-align: center;
  }
  .approval-success-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: white;
    border-radius: 12px;
    padding: 32px 24px;
    max-width: 660px;
    width: 100%;
    height: 390px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid #f0f0f0;
    animation: slideIn 0.3s ease-out;
    font-family: "ProximaNova-Regular",sans-serif;
  }
  @keyframes slideIn {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .approval-success-title {
    color: #FF6B35;
    font-size: 25px;
    font-weight: 900;
    font-family: 'ProximaNova-ExtraBold';
    margin-bottom: 16px;
    margin-top: 0;
  }
  .approval-success-message {
    color: #414141;
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 16px;
    margin-top: 0;
    font-family: 'ProximaNova-ExtraBold';
  }
  .approval-amount-section {
    margin-bottom: 22px;
  }
 
  .approval-amount-label {
    color: #414141;
    font-size: 26px;
    font-weight: 900;
    font-family: 'ProximaNova-ExtraBold';
    margin-bottom: 0;
    margin-top: 0;
  }
 
  .approval-amount-value {
    color: #FF6B35;
    font-size: 25px;
    font-weight: 900;
    font-family: 'ProximaNova-ExtraBold';
    margin: 0;
  }
 
  .approval-info-text {
    color: #414141;
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 12px;
    margin-top: 0;
  }
 
  .approval-info-text:last-child {
    margin-bottom: 0;
  }
 
  .approval-primary-button {
    background-color: #FF6C00;
    color: white;
    border: none;
    height:50px;
    border-radius: 50px;
    padding: 0px 64px;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 16px;
    min-width: 220px;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }
 
  .approval-primary-button:hover {
    background-color: #e55a2b;
  }
 
  .approval-primary-button:active {
    background-color: #d14a1f;
  }
 
  @media (max-width: 767px) {
    .approval-success-container {
      padding: 24px 20px;
      margin: 10px;
    }
   
    .approval-success-title {
      font-size: 28px;
    }
   
    .approval-success-message {
      font-size: 20px;
    }
   
    .approval-amount-value {
      font-size: 36px;
    }
   
    .approval-primary-button {
      min-width: 200px;
      padding: 14px 28px;
    }
  }
 
@media (min-width: 480px) and (max-width: 540px),(max-width: 480px) {
    .approval-success-container {
      padding: 20px 16px;
      height:fit-content;
    }
   
    .approval-success-title {
      font-size: 24px;
    }
   
    .approval-success-message {
      font-size: 20px;
    }
 
    .approval-amount-label{
      font-size:20px;
    }
   
    .approval-amount-value {
      font-size: 24px;
    }

    .info-text{
      font-size:14px;
    }
   
    .approval-primary-button {
      min-width: 290px;
      font-size:18px;
      padding: 12px 24px;
    }
  }
 
  @media (min-width: 340px) and (max-width: 400px) {
  .approval-primary-button {
    min-width: 280px;
    font-size: 18px;
  }
}
 
  /* Application Rejected Overlay */
.application-rejected-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1031;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    overflow: hidden;
    overscroll-behavior: contain;
  }

  .seller-led-center .application-rejected-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto;
    min-height: 390px;
    text-align: center;
  }
 
  .application-rejected-container {
    background-color: white;
    border-radius: 12px;
    padding: 32px 24px;
    max-width: 660px;
    width: 100%;
    height:390px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid #f0f0f0;
    animation: slideIn 0.3s ease-out;
    font-family: "ProximaNova-Regular",sans-serif;
  }
  @keyframes slideIn {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .application-rejected-title {
    color: #414141;
    font-size: 34px;
    font-weight: 900;    
    font-family: 'ProximaNova-ExtraBold';
    margin-bottom: 32px;
    margin-top: 24px;
  }
  .application-rejected-info {
    margin-bottom: 32px;
  }
  .application-rejected-text {
    color: #414141;
    font-size: 18px;
    line-height: 1;
    margin-bottom: 16px;
    margin-top: 0;
  }
  .application-rejected-text:last-child {
    margin-bottom: 0;
  }
  .application-rejected-actions {
    display: flex;
    justify-content: center;
  }
  .application-rejected-close-button {
    background-color: #FF6C00;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 0px 64px;
    font-size: 18px;
    font-weight: 400;
    height:50px;
    min-width: 220px;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }
  .application-rejected-close-button:hover {
    background-color: #e55a2b;
  }
  .application-rejected-close-button:active {
    background-color: #d14a1f;
  }
  @media (max-width: 767px) {
    .application-rejected-container {
      padding: 24px 20px;
      margin: 10px;
    }
   
    .application-rejected-title {
      font-size: 28px;
    }
   
    .application-rejected-close-button {
      min-width: 200px;
      padding: 14px 28px;
    }
  }
 
 @media (min-width: 480px) and (max-width: 540px),(max-width: 480px) {
    .application-rejected-container {
      padding: 20px 16px;
      height:fit-content;
    }
   
    .application-rejected-title {
      font-size: 24px;
    }
   
    .application-rejected-text {
      font-size: 14px;
    }
   
    .application-rejected-close-button {
      min-width: 290px;
      font-size:18px;
      padding: 12px 24px;
    }
  }
 
/* Application Pending Overlay */
.application-pending-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1031;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    overflow: hidden;
    overscroll-behavior: contain;
  }  

  .seller-led-center .application-pending-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto;
    min-height: 390px;
    text-align: center;
  }
  .application-pending-container {
    background-color: white;
    border-radius: 12px;
    padding: 32px 24px;
    max-width: 660px;
    width: 100%;
    height: 390px;
    width: 100%;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid #f0f0f0;
    animation: slideIn 0.3s ease-out;
    font-family: "ProximaNova-Regular",sans-serif;
  }
  @keyframes slideIn {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
 
  .application-pending-title {
    color: #414141;
    font-size: 34px;
    font-weight: 900;
    margin-bottom: 36px;
    font-family: 'ProximaNova-ExtraBold';
    margin-top: 24px;
  }
  .application-pending-info {
    margin-bottom: 32px;
  }
 
  .application-pending-text {
    color: #414141;
    font-size: 18px;
    line-height: 1;
    margin-bottom: 16px;
    margin-top: 0;
  }
 
  .application-pending-text:last-child {
    margin-bottom: 0;
  }
  .application-pending-actions-seller-led-content{
    margin-top: 10px;
  }
  .application-pending-actions-seller-led-success-content{
    margin-top: 35px;
  }
  .application-pending-text-span {
    color: #414141;
    font-size: 18px;
    line-height: 1;
    margin-bottom: 16px;
    margin-top: 0;
    display: block;
  }
  .application-pending-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .application-pending-close-button {
    background-color: #FF6C00;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 0px 64px;
    font-size: 18px;
    height:50px;
    font-weight: 400;
    min-width:220px;
    margin-top:20px;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }
 
  .application-pending-close-button:hover {
    background-color: #e55a2b;
  }
 
  .application-pending-close-button:active {
    background-color: #d14a1f;
  }
  @media (max-width: 767px) {
    .application-pending-container {
      padding: 24px 20px;
      margin:20px;
    }
   
    .application-pending-title {
      font-size: 28px;
    }
   
    .application-pending-text {
      font-size: 18px;
    }
   
    .application-pending-close-button {
      padding: 14px 28px;
      font-size: 18px;
      min-width: 200px;
    }
  }
 
  @media (min-width: 480px) and (max-width: 540px),(max-width: 480px) {
    .application-pending-container {
      padding: 20px 16px;
      height:fit-content;
    }
   
    .application-pending-title {
      font-size: 24px;
    }
   
    .application-pending-text {
      font-size: 14px;
    }
    .application-pending-text-span{
      font-size: 14px;
    }
   
    .application-pending-close-button {
      padding: 12px 24px;
      font-size: 15px;
      min-width: 290px;
    }
  }
 
  /* Application Flinks Required Overlay */
.application-flinks-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1031;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    overflow: hidden;
    overscroll-behavior: contain;
  }
  .application-flinks-container {
    background-color: white;
    border-radius: 12px;
    padding: 32px 24px;
    max-width: 660px;
    width: 100%;
    height: 390px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid #f0f0f0;
    animation: slideIn 0.3s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: "Proxima Nova",sans-serif;
  }
  @keyframes slideIn {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .application-flinks-title {
    color: #414141;
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 20px;
    margin-top: 14px;
    text-align: center;
    line-height: 1.8;
    font-family: 'ProximaNova-ExtraBold';
  }
  .application-flinks-info {
    margin-bottom: 20px;
    text-align: center;
    width: 100%;
  }
  .application-flinks-security{
    text-align: center;
    width:100%;
  }
  .application-flinks-security-text{
    color: #414141;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 16px;
    margin-top:0px;
  }
 
  .application-flinks-text {
    color: #414141;
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 16px;
    margin-top:0;
  }
  .application-flinks-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  .application-flinks-connect-button {
    background-color: #FF6C00;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 0px 64px;
    font-size: 18px;
    height:50px;
    font-weight: 400;
    min-width: 220px;
    margin-top:20px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    text-align: center;
  }
 
  .application-flinks-connect-button:hover {
    background-color: #e55a2b;
  }
 
  .application-flinks-connect-button:active {
    background-color: #d14a1f;
  }
  @media (max-width: 767px),(max-width:820px) {
    .application-flinks-container {
      padding: 24px 20px;
      margin:10px;
    }
    .application-flinks-info{
      margin-bottom:10px;
    }
   
    .application-flinks-title {
      font-size: 28px;
    }
   .application-flinks-security-text{
      margin-bottom: 10px;
      font-size:15px;
    }
    .application-flinks-text {
      font-size: 18px;
    }
   
    .application-flinks-connect-button {
      padding: 14px 28px;
      min-width: 200px;
    }
  }
 
  @media (min-width: 480px) and (max-width: 540px),(max-width: 480px) {
    .application-flinks-container {
      padding: 20px 16px;
      height:fit-content;
    }
   
    .application-flinks-title {
      font-size: 24px;
      line-height: 1.2;
    }
   
    .application-flinks-text {
      font-size: 18px;
    }
   
    .application-flinks-connect-button {
      padding: 12px 24px;
      font-size: 18px;
      min-width: 290px;
    }
  }

.bank-explanatory-dialog {
  max-width: 660px;
  width: 100%;
  margin: 0 auto;
  height:98vh;
  font-family: 'ProximaNova-Regular';
}

.bank-explanatory-container {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border: 1px solid #f0f0f0;
  animation: slideIn 0.3s ease-out;
  height: 390px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'ProximaNova-Regular';
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 767px) {
  .bank-explanatory-dialog {
    height: 100vh;
    display: flex !important;
    align-items: center;
    justify-content: center;
    max-width: 100% !important;
    padding: 0 16px;
    overflow-y: auto;
  }
  .bank-explanatory-container {
    height:fit-content;
    width: 100%;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  }
}
@media (max-width: 576px) {
  .create-session-error-modal .modal-dialog {
    width: 95%;
    margin: auto auto;
    height: auto;
  }
  .create-session-error-modal .modal-content {
    max-height: 80vh;
  }
  .create-session-error-body {
    padding: 20px 16px;
  }
  .create-session-error-message {
    font-size: 15px;
  }
  .create-session-error-button {
    width: 100%;
    font-size: 15px;
    padding: 12px;
  }
}
.application-error-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1031;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    overflow: hidden;
    overscroll-behavior: contain;
  }  
  .application-error-container {
    background-color: white;
    border-radius: 12px;
    padding: 32px 24px;
    max-width: 660px;
    width: 100%;
    height: 390px;
    width: 100%;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid #f0f0f0;
    animation: slideIn 0.3s ease-out;
    font-family: "ProximaNova-Regular",sans-serif;
  }
  @keyframes slideIn {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
 
  .application-error-title {
    color: #414141;
    font-size: 34px;
    font-weight: 900;
    margin-bottom: 36px;
    font-family: 'ProximaNova-ExtraBold';
    margin-top: 24px;
  }
  .application-error-info {
    margin-bottom: 32px;
  }

  .application-error-text {
    color: #414141;
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 16px;
    margin-top: 0;
  }

  .application-error-text:last-child {
    margin-bottom: 0;
  }
  .application-error-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .application-error-close-button {
    background-color: #FF6C00;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 0px 64px;
    font-size: 18px;
    height:50px;
    font-weight: 400;
    min-width:220px;
    margin-top:20px;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }

  .application-error-close-button:hover {
    background-color: #e55a2b;
  }
  .errorRejectContactNumber{
    color:#007bff;
    font-weight: 700;
  }
  .application-error-close-button:active {
    background-color: #d14a1f;
  }
  @media (max-width: 767px) {
    .application-error-container {
      padding: 24px 20px;
      margin:20px;
    }
   
    .application-error-title {
      font-size: 28px;
    }
   
    .application-error-text {
      font-size: 18px;
    }
   
    .application-error-close-button {
      padding: 14px 28px;
      font-size: 18px;
      min-width: 200px;
    }
  }
 
  @media (min-width: 480px) and (max-width: 540px),(max-width: 480px) {
    .application-error-container {
      padding: 20px 16px;
      height:fit-content;
    }
   
    .application-error-title {
      font-size: 24px;
    }
   
    .application-error-text {
      font-size: 14px;
    }
   
    .application-error-close-button {
      padding: 12px 24px;
      font-size: 15px;
      min-width: 290px;
    }
  }