.custom-container {
      padding: 20px;
      width: 90%;
      max-width: 600px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .form-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: nowrap;
    }

    .custom-label {
      font-weight: bold;
      margin: 0;
      flex: 0 0 20%;
      text-align: left;
    }

    .custom-select {
      flex: 1;
      padding: 8px;
      border: 1px solid #ccc;
      border-radius: 4px;
      margin: 0;
      width: 100%;
    }

    .custom-button1 {
      margin-top: 10px;
      padding: 10px 20px;
      background-color: #006ee5;
      color: #ffffff;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      font-weight: bold;
      text-align: center;
      align-self: center; /* Center the button horizontally */
      display: block;
    }
    .custom-button1:hover {
      background-color: #006ee5 !important;
    }
    .custom-button1:active {
      background-color: #005a9e !important;
    }
    .modal {
      display: none;
      position: fixed;
      z-index: 999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.5);
    }

    .modal-content {
      background-color: #fff;
      margin: 15% auto;
      padding: 20px;
      border-radius: 8px;
      width: 80%;
      max-width: 400px;
      text-align: center;
      font-weight: bold;
    }

    .close-btn {
      float: right;
      font-size: 20px;
      cursor: pointer;
    }

    .footer-margin {
      margin-bottom: 200px !important;
    }

    .paracontent-margin {
      text-align: center;
    }

    .success-message {
        display:none;
        color: green; 
        text-align: center;
    }