
.openModal{
    cursor: pointer;
}
.grecaptcha-badge{
    display:none !important;
}
.dsn-hamburger{
    justify-content: center !important;
}

:root {
      --overlay-bg: rgba(0,0,0,0.55);
      --modal-bg: #fff;
      --accent: #007bff;
      --radius: 12px;
      --max-w: 1080px;
      --gap: 16px;
    }

    /* Trigger */
    .btn {
      display: inline-block;
      padding: 10px 16px;
      background: var(--accent);
      color: white;
      border-radius: 8px;
      border: none;
      cursor: pointer;
      font-weight: 600;
      box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    }

    /* Overlay */
    .modal-overlay {
      position: fixed;
      inset: 0;
      background: transparent;
      display: none; /* hidden by default */
      align-items: center;
      justify-content: center;
      z-index: 1000;
      padding: 24px;
    }
    .modal-overlay.is-open {
      display: flex;
      background: var(--overlay-bg);
    }

    /* Modal box */
    .modal {
      width: 100%;
      max-width: var(--max-w);
      border-radius: var(--radius);
      box-shadow: 0 20px 50px rgba(15, 23, 42, 0.35);
      transform: translateY(18px) scale(.98);
      opacity: 0;
      transition: transform 240ms cubic-bezier(.2,.9,.2,1), opacity 220ms ease;
      overflow: hidden;
    }
    .modal-overlay.is-open .modal {
      transform: translateY(0) scale(1);
      opacity: 1;
    }

    .modal-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: var(--gap);
      padding: 18px 20px;
      border-bottom: 1px solid #eef1f6;
      background: rgba(255,255,255,0.8);
    }
    .modal-title {
      margin: 0;
      font-size: 25px;
      font-weight: 700;
    }
    .modal-body {
      padding: 20px;
      line-height: 1.5;
      font-size: 0.98rem;
      background: white;
    }
    .modal-footer {
      display: flex;
      justify-content: flex-end;
      gap: 12px;
      padding: 16px 20px;
      border-top: 1px solid #eef1f6;
      background: #fafbfd;
    }

    /* Close button */
    .close-btn {
      appearance: none;
      border: none;
      background: transparent;
      font-size: 18px;
      line-height: 1;
      padding: 6px;
      cursor: pointer;
      color: #333;
      border-radius: 8px;
    }
    .close-btn:focus { outline: 2px solid rgba(0,123,255,.25); }

    /* Example action buttons */
    .btn-secondary {
      background: #f3f5f9;
      color: #1f2937;
      padding: 9px 14px;
      border-radius: 8px;
      border: 1px solid #e6e9f0;
      font-weight: 600;
      cursor: pointer;
    }

    /* Small screen tweaks */
    @media (max-width: 480px) {
      .modal { border-radius: 10px; }
      .modal-body { padding: 16px; }
    }
    .popup {
        display: none;
        position: fixed;
        top: 20px;
        right: 20px;
        background: #4CAF50;
        color: white;
        padding: 15px 25px;
        border-radius: 5px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        font-family: Arial, sans-serif;
        z-index: 9999;
        opacity: 0;
        transition: opacity 0.5s ease;
    }
    .popup-success {
        background-color: #4CAF50;
    }
    .popup-error {
        background-color: #f44336;
    }
    .popup.show {
        display: block;
        opacity: 1;
    }