    .btn {
      background: linear-gradient(90deg, #f5b800, #5e2b97);
      color: white;
      border: none;
      padding: 10px 16px;
      border-radius: 8px;
      font-size: 1rem;
      cursor: pointer;
      transition: 0.3s;
    }

    .btn:hover {
      transform: translateY(-1px);
      opacity: 0.9;
      background: linear-gradient(90deg, #f5b800, #5e2b97);
    }

         /* ===== Modal Styles ===== */
    .modal {
      display: none;
      position: fixed;
      z-index: 1000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      justify-content: center;
      align-items: center;
      padding: 20px;
    }

    .modal-content {
      background: #fff;
      border-radius: 20px;
      padding: 30px;
      max-width: 420px;
      width: 100%;
      text-align: center;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
      position: relative;
      animation: fadeIn 0.4s ease;
    }

    @keyframes fadeIn {
      from { transform: translateY(-20px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }

    .close-btn {
      position: absolute;
      right: 16px;
      top: 12px;
      font-size: 24px;
      cursor: pointer;
      color: #5e2b97;
    }

    .modal-content h2 {
      color: #5e2b97;
      margin-bottom: 10px;
    }

    input, textarea {
      width: 100%;
      padding: 12px;
      border-radius: 10px;
      border: 1.5px solid #ddd;
      margin: 8px 0;
      font-size: 0.95rem;
    }

    input:focus, textarea:focus {
      border-color: #5e2b97;
      outline: none;
      box-shadow: 0 0 4px rgba(94, 43, 151, 0.3);
    }

    .status-message {
      margin-block: 8px;
      font-size: 0.9rem;
      text-align: center;
    }

    .success { color: green; }
    .error { color: red; }

    .modal-content button[type="submit"] {
      /* background: linear-gradient(90deg, #f5b800, #5e2b97); */
      color: #fff;
      border: none;
      border-radius: 10px;
      padding: 12px;
      cursor: pointer;
      font-size: 0.9rem;
      transition: 0.3s;
      margin-top: 12px;
    }

    .modal-content button[type="submit"]:hover {
      opacity: 0.9;
    }