    body {
      background-color: #f8f9fa;
    }
    /* Gradient background for the Generate Button */
    .btn-gradient {
      background: linear-gradient(90deg, #553c9a, #ee4b2b);
      color: white;
      border: none;
    }
    .btn-gradient:hover,
    .btn-gradient:focus,
    .btn-gradient:active {
      background: linear-gradient(90deg, #553c9a, #ee4b2b);
      color: white !important;
      outline: none;
      box-shadow: none;
    }

    /* Loader container & styling */
    /* Make sure the container is relative positioned for absolute positioning of the loader */
    #comebacksContainer {
      position: relative;
      min-height: 60px;
    }
    #loadingIndicator {
      display: none;
      justify-content: center;
      align-items: center;
      margin-top: 1rem;
      min-height: 40px;
    }
    .loader {
      border: 3px solid rgba(0, 0, 0, 0.1);
      border-left-color: #000;
      border-radius: 50%;
      width: 30px;
      height: 30px;
      animation: spin 1s linear infinite;
    }
    @keyframes spin {
      to { transform: rotate(360deg); }
    }

    /* 2x2 grid for form selects */
    .form-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1rem;
    }

    /* Container styling */
    .container-comeback {
      max-width: 1250px;
      margin: 1rem auto;
      padding: 1rem;
      background: #ffffff;
      border-radius: 8px;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    }

    .favourite-card {
      max-width: 1250px;
      margin: 1rem auto;
      padding: 1rem;
      background: #ffffff;
      border-radius: 8px;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    }

    /* Step Section */
    .step {
      background-color: #f9f9f9;
      padding: 20px;
    }
    @media screen and (max-width: 768px) {
      .step {
        padding: 15px;
        margin-bottom: 20px;
        max-width: 100%;
        overflow-x: hidden;
      }
    }
    .step-description {
      font-size: 16px;
      color: #666;
    }

    /* Buttons for icons (clickable areas) */
    .icon-btn {
      background: none;
      border: none;
      padding: 0;
      cursor: pointer;
    }
    .icon-btn i {
      font-size: 1.2rem;
    }