
    /* Custom CSS for the separator effect */
    .separator {
      display: flex;
      align-items: center;
      text-align: center;
      width: 100%; /* Ensure it takes full width */
      /*margin: 0.0rem 0;  Add some vertical spacing */
    }
    .separator::before,
    .separator::after {
      content: "";
      flex: 1;
      border-bottom: 1px solid #6663fd; /* Light gray line */
    }
    .separator:not(:empty)::before {
      margin-right: 0.5em; /* Space before text */
    }
    .separator:not(:empty)::after {
      margin-left: 0.5em; /* Space after text */
    }
