   /* Custom Styling */
   body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
  }
  .registration-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    background-color: #fff;
    transition: transform 0.3s ease;
  }
  .registration-card:hover {
    transform: translateY(-5px);
  }
  .card-title {
    font-size: 1.25rem;
    font-weight: bold;
  }
  .btn-view-details {
    background-color: #3f51b5;
    color: #fff;
    border: none;
  }
  .btn-view-details:hover {
    background-color:dodgerblue;
    color: #ddd;
  }
  .cta-button {
    background-color: #3f51b5;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
  }
  .cta-button:hover {
    background-color: #2c387e;
  }

  /* Styling for SweetAlert modal content */
  .swal2-html-container ul {
    list-style-type: disc;
    margin-left: 20px;
    font-size: 1.1em;
    text-align: left; /* Ensures left alignment of list content */
  }
  .swal2-html-container li {
    color: #555;
    margin-bottom: 10px;
    text-align: left; /* Ensures left alignment of each list item */
    font-size: 1em; /* Adjust font size here to match list items size */
  }

  .swal2-html-container .document-list li {
    font-size: 1em; /* Reduce the font size for documents */
  }

  /* Bold text for Required Documents and Steps */
  .swal2-html-container .title {
    font-weight: bold;
    text-align: left;
    font-size: 1.2em;
  }
  .registration-card {
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    transition: transform 0.2s;
  }

  .registration-card:hover {
    transform: translateY(-10px);
  }

  .card-title {
    font-size: 18px;
    font-weight: bold;
  }

  .short-description {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .btn-view-details {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
  }

  .btn-view-details:hover {
    background-color: #0056b3;
  }

  .cta-button {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
  }

  .cta-button:hover {
    background-color: #218838;
  }

  .document-list {
    padding-left: 20px;
  }
  body {
padding-right: 0 !important; /* Remove right padding */
margin-right: 0 !important;  /* Remove right margin */
}