
.svmt-modal-box-service {
    background: #ffffff;
    border-radius: 32px;
    padding: 40px;
    width: 100%;
    max-width: 460px;
    max-height: 90vh;
    box-sizing: border-box;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden; 
}

.svmt-modal-box-service #sessionTypeForm {
    overflow-y: auto;
    flex: 1; 
    padding-right: 8px; 
}

.sm-page-title {
  font-size: 22px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
}


.sm-page-add-btn {
  background-color: #63404a;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.2s ease;
}

.modal-content {
      border-radius: 28px !important;
      padding: 1.8rem 1.5rem;
      border: none;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      background-color: #ffffff;
}


    .input-suffix-wrapper {
      position: relative;
    }

    .input-suffix-wrapper .currency-symbol {
      position: absolute;
      right: 20px;
      top: 50%;
      transform: translateY(-50%);
      color: #7c8865; /* Olive Green Currency Symbol */
      font-weight: 600;
      font-size: 14px;
      pointer-events: none;
    }

    .input-suffix-wrapper .up-down-icon {
      position: absolute;
      right: 20px;
      top: 50%;
      transform: translateY(-50%);
      color: #7c8865;
      font-size: 14px;
      pointer-events: none;
    }

  .form-label-custom {
    font-size: 16px;
    font-weight: 500;
    color: #363636;
    margin-bottom: 6px;
    display: block;
    
    }


  .form-control-pill, .form-select-pill {
      background-color: #f9f8f6;
      border: 1px solid transparent;
      border-radius: 50px;
      padding: 12px 18px;
      font-size: 13.5px;
      color: #444444;
      transition: all 0.2s ease;
  }


  .custom-checkbox-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
  }


    .custom-checkbox-box {
      height: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s ease;
      background-color: #ffffff;
          border: none
    }


    .custom-checkbox-container input {
      display: none;
    }
    .custom-checkbox-container input:checked + .custom-checkbox-box {
      background-color: #ffffff;
      border-color: #634751;
    }

    .custom-checkbox-box i {
      color: #634751;
      font-size: 14px;
      font-weight: bold;
      display: none;
    }

    .custom-checkbox-container input:checked + .custom-checkbox-box i {
      display: block;
    }

    .custom-checkbox-label {
      font-size: 14px;
      font-weight: 600;
      color: #333333;
    }