/* ============================================================
   CENTRALIZED STYLESHEET
   All component styles are consolidated here.
   Import this file ONCE in main.jsx
   ============================================================ */

/* ============================================================
   1. GLOBAL / BASE STYLES  (index.css)
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans&family=Roboto&display=swap');

:root {
  font-family: 'Noto Sans', 'Roboto', sans-serif;
  line-height: 1.5;
  font-weight: 400;

  color-scheme: light dark;
  color: rgba(255, 255, 255, 0.87);
  background-color: #242424;

  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  font-weight: 500;
  color: #646cff;
  text-decoration: inherit;
}
a:hover {
  color: #535bf2;
}

html,
body {
  margin: 0;
  padding: 0;
  min-width: 320px;
  min-height: 100vh;
  width: 100%;
  font-family: 'Noto Sans', 'Roboto', sans-serif;
}

#root {
  min-height: 100vh;
  width: 100%;
}

h1 {
  font-size: 3.2em;
  line-height: 1.1;
}

button {
  border-radius: 6px;
  border: 1px solid transparent;
  padding: 0.6em 1.2em;
  font-size: 1em;
  font-weight: 500;
  font-family: inherit;
  background-color: #1a1a1a;
  cursor: pointer;
  transition: border-color 0.25s;
}
button:focus,
button:focus-visible {
  outline: 4px auto -webkit-focus-ring-color;
}

@media (prefers-color-scheme: light) {
  :root {
    color: #213547;
    background-color: #ffffff;
  }
  a:hover {
    color: #747bff;
  }
  button {
    background-color: #f9f9f9;
  }
}


/* ============================================================
   2. HEADER  (Header.css)
   ============================================================ */
.payment-page-header {
  background-color: #35659E !important;
  background: #35659E !important;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0px;
  left: 0px;
  z-index: 100;
}

.header-left {
  flex: 1;
  display: flex;
  align-items: center;
}

.back-button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: background 0.2s;
  border-radius: 6px;
  top: 21px;
  left: 120px;
  width: 45px;
  height: 24px;
  text-align: left;
  font: normal normal bold 18px/18px Nunito Sans;
  letter-spacing: 0px;
  color: #FFFFFF;
  opacity: 1;
}

.header-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
  margin: 0;
  white-space: nowrap;
  letter-spacing: 0.3px;
  pointer-events: none;
}

.header-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.create-project-btn {
  padding: 8px 20px;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  background: transparent;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.4px;
  width: 170px;
  height: 40px;
  background: #1FA0CC 0% 0% no-repeat padding-box;
  border: 1px solid #1FA0CC;
  border-radius: 6px;
  opacity: 1;
}

.create-project-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.7);
}

.user-avatar-container {
  position: relative;
}

.user-avatar {
  border: 1px solid #FFFFFF;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #35659E;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
}

.user-avatar:hover {
  transform: scale(1.05);
}

.user-dropdown-menu {
  top: 1px;
  position: absolute;
  right: 0;
  background: white;
  border-radius: 3px;
  box-shadow: 0px 1px 7px #d9dfe1;
  min-width: 170px;
  z-index: 1000;
  overflow: hidden;
  animation: dropdownFadeIn 0.2s ease-out;
}

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

.dropdown-user-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 7px 8px;
}

.dropdown-user-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #35659E;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.dropdown-user-name {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
}

.dropdown-menu-item {
  width: 100%;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 14px;
  color: #333;
  text-align: left;
  border-radius: 0;
  margin: 3px 0;
}

.dropdown-menu-item:hover {
  background: #e4f2fc;
}

.dropdown-menu-item svg {
  flex-shrink: 0;
  color: #667eea;
}

.dropdown-divider {
  height: 2px;
  background: #e4e1e7;
}

.logout-confirm-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: activateFadeIn 0.2s ease-out;
}

.logout-confirm-content {
  background: white;
  border-radius: 6px;
  padding: 40px 36px 36px;
  max-width: 360px;
  width: 90%;
  text-align: center;
  animation: activateSlideUp 0.3s ease-out;
}

.logout-confirm-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin-bottom: 16px;
}

.logout-confirm-title {
  font-size: 22px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 16px 0;
  letter-spacing: 0.3px;
}

.logout-confirm-message {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin: 0 0 32px 0;
}

.logout-confirm-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.logout-confirm-btn {
  flex: 1;
  padding: 14px 24px;
  border: none;
  background: #35659E;
  color: white;
  font-size: 15px;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.logout-confirm-btn:active {
  transform: translateY(0);
}

.logout-confirm-btn--no {
  background: transparent;
  color: #35659E;
  border: 2px solid;
}




/* ============================================================
   3. FOOTER  (Footer.css)
   ============================================================ */
.payment-page-footer {
  background: white;
  padding: 20px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  position: sticky;
  bottom: 0;
  z-index: 100;
  border-top: 1px solid #eee;
}

/* .footer-clear-btn {
  padding: 12px 32px;
  border: 2px solid #ccc;
  background: white;
  color: #666;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
} */

/* .footer-submit-btn {
  padding: 12px 48px;
  border: none;
  background: #35659E;
  color: white;
  font-size: 15px;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
} */
 
.footer-clear-btn 
{padding: 14px 0;
    width: 230px;
    font-size: 17px;
    background: transparent;
    cursor: pointer;
    text-transform: uppercase;
    border: 1px solid #b6b6b6;
    font-weight: 500;
    border-radius: 6px;
  }

.footer-clear-btn:hover {
  background: #f3f1f8;
}



.footer-submit-btn
{padding: 14px 0;
    width: 230px;
    font-size: 17px;
    font-weight: 500;
    color: #fff;
    background: #35659e;
    border-radius: 6px;
    cursor: pointer;
    transition: background .2s;
    text-transform: uppercase;
    border: 1px solid #35659E;}






/* ============================================================
   4. LOGIN PAGE  (LoginPage.css)
   ============================================================ */
.login-page {
  --login-bg-url: url('/public/images/desktop_background.png');
  --login-input-bg: rgba(255, 255, 255, 0.12);
  --login-input-border: rgba(255, 255, 255, 0.25);
  --login-button-bg: #35659E;
  --login-button-hover: #2a4f80;
  --login-content-max-width: 400px;
  --login-content-padding: 2rem;

  min-height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: var(--login-bg-url);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.login-page__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    var(--login-overlay) 0%,
    rgba(30, 45, 65, 0.35) 50%,
    rgba(30, 45, 65, 0.2) 100%
  );
  pointer-events: none;
}

.login-page__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--login-content-max-width);
  padding: var(--login-content-padding);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.login-page__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.login-page__logo {
  color: rgba(255, 255, 255, 0.95);
}

.login-page__brand {
  margin: 0;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.98);
  text-transform: uppercase;
}

.login-page__main {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.login-page__heading {
  margin: 0 0 0.75rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.98);
}

.login-page__description {
  margin: 0 0 2rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  max-width: 400px;
}

.login-page__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.login-page__field {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  width: 100%;
}

.login-page__input-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.25rem;
  background: var(--login-input-bg);
  border: 1px solid var(--login-input-border);
  border-radius: 12px;
  backdrop-filter: blur(8px);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.login-page__input-wrapper--error {
  border-color: #e57373;
}

.login-page__input-wrapper--error:focus-within {
  border-color: #ef5350;
}

.login-page__error {
  margin: 0;
  font-size: 0.8125rem;
  color: #ffab91;
  text-align: left;
  line-height: 1.4;
}

.login-page__input-icon {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  flex-shrink: 0;
}

.login-page__input-prefix {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
}

.login-page__input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.98);
  font-size: 1rem;
  outline: none;
}

.login-page__input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.login-page__input:focus {
  outline: none;
}

.login-page__input-wrapper:focus-within {
  border-color: rgba(255, 255, 255, 0.4);
}

.login-page__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  background: var(--login-button-bg);
  border: none;
  border-radius: 6px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease;
}

.login-page__button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 2px;
}

.login-page__button:disabled {
  background: #9e9e9e;
  color: #f5f5f5;
  opacity: 1;
  cursor: not-allowed;
}

.login-page__button-loader {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.login-page__button-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: login-page-spin 0.7s linear infinite;
}

@keyframes login-page-spin {
  to {
    transform: rotate(360deg);
  }
}

.p-logo {
  top: 110px;
  left: 653px;
  width: 80px;
  height: 80px;
  background: transparent;
  opacity: 0.8;
}

.poolpix-logo {
  top: 173px;
  left: 600px;
  width: 250px;
  height: 50px;
  opacity: 1;
}




/* ============================================================
   5. OTP VERIFICATION PAGE  (OtpVerificationPage.css)
   ============================================================ */
.otp-page {
  --otp-bg-url: url('/public/images/desktop_background.png');
  --otp-button-bg: #35659E;
  --otp-button-hover: #2a4f80;
  --otp-content-max-width: 420px;
  --otp-content-padding: 2rem;

  min-height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: var(--otp-bg-url);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.otp-page__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    var(--otp-overlay) 0%,
    rgba(30, 45, 65, 0.35) 50%,
    rgba(30, 45, 65, 0.2) 100%
  );
  pointer-events: none;
}

.otp-page__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--otp-content-max-width);
  padding: var(--otp-content-padding);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.otp-page__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.otp-page__logo {
  color: rgba(255, 255, 255, 0.95);
}

.otp-page__brand {
  margin: 0;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.98);
  text-transform: uppercase;
}

.otp-page__main {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.otp-page__heading {
  margin: 0 0 0.75rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.98);
}

.otp-page__description {
  margin: 0 0 2rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.otp-page__phone {
  font-weight: 600;
}

.otp-page__edit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem;
  margin: 0;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  border-radius: 4px;
}

.otp-page__edit:hover {
  color: #fff;
}

.otp-page__edit:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
}

.otp-page__form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
  margin-bottom: 1.5rem;
}

.otp-page__error {
  margin: 0;
  font-size: 0.875rem;
  color: #ffab91;
  text-align: center;
  line-height: 1.4;
  max-width: 320px;
}

.otp-page__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  max-width: 320px;
  padding: 1rem 1.5rem;
  background: var(--otp-button-bg);
  border: none;
  border-radius: 6px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease;
}

.otp-page__button-loader {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.otp-page__button-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: otp-page-spin 0.7s linear infinite;
}

@keyframes otp-page-spin {
  to {
    transform: rotate(360deg);
  }
}

.otp-page__button:disabled:hover {
  background: #9e9e9e;
}

.otp-page__button:disabled {
  background: #9e9e9e;
  color: #f5f5f5;
  opacity: 1;
  cursor: not-allowed;
}

.otp-page__button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 2px;
}

.otp-page__resend {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}

.otp-page__resend-link {
  margin: 0;
  padding: 0;
  font-size: inherit;
  color: rgba(255, 255, 255, 0.98);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.otp-page__resend-link:hover:not(:disabled) {
  text-decoration: underline;
}

.otp-page__resend-link:disabled {
  cursor: default;
  opacity: 0.8;
}

.otp-page__timer {
  font-variant-numeric: tabular-nums;
}




/* ============================================================
   6. OTP INPUT  (OtpInput.css)
   ============================================================ */
.otp-input {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}

.otp-input__digit {
  width: 3.25rem;
  height: 3.25rem;
  padding: 0;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
   color: #fff;
  background: #557a9d;
  border: none;
  border-radius: 8px;
  outline: none;
  -webkit-appearance: none;
  appearance: none;

}

.buynow-form-section .otp-input__digit {
  color: #333;
  background: #FFF;
   border: 1px solid #eee;
}


.otp-input__digit::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.otp-input__digit::-webkit-outer-spin-button,
.otp-input__digit::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.otp-input__digit[type='tel'] {
  -moz-appearance: textfield;
}


/* ============================================================
   7. LOADER  (Loader.css)
   ============================================================ */
.loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.88);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  backdrop-filter: blur(4px);
}

.loader-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.loader-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  animation: logoPulse 1.2s ease-in-out infinite;
}

.loader-message {
  font-size: 15px;
  font-weight: 500;
  color: #555;
  margin: 0;
  letter-spacing: 0.3px;
}

@keyframes logoPulse {
  0%   { transform: scale(1);    opacity: 1; }
  50%  { transform: scale(1.12); opacity: 0.75; }
  100% { transform: scale(1);    opacity: 1; }
}


/* ============================================================
   8. TOAST  (Toast.css)
   ============================================================ */
.toast {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  min-width: 280px;
  max-width: 420px;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2), 0 4px 12px rgba(0, 0, 0, 0.1);
  animation: toast-in 0.35s ease-out;
}

@keyframes toast-in {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.toast--success {
  background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.toast--error {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.toast__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 0.1rem;
}

.toast__message {
  flex: 1;
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.45;
  font-weight: 500;
}

.toast__close {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
  margin: -0.25rem -0.25rem -0.25rem 0;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 8px;
  color: inherit;
  cursor: pointer;
  transition: background 0.2s ease;
}

.toast__close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.toast__close:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 2px;
}




/* ============================================================
   9. USER DETAILS  (UserDetails.css)
   ============================================================ */
.user-details-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #f3f4f6;
}

.user-details-content {
  flex: 1;
  margin: 20px 20px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0px 3px 0px #e8e8e9;
  padding: 28px 30px;
}


.user-details-content.buynow
{ display: flex; 
  height: calc(100vh - 92px);
  overflow-y: scroll;
  margin: 20px 20px;}

.user-details-card {
  width: 100%;
}

.user-details-heading {
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 43px;
}

button:focus, button:focus-visible { outline: none; }

.ud-state-text {
  font-size: 15px;
  color: #888;
  text-align: center;
  margin: 24px 0;
}

.user-details-form {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.user-details-form .ud-form-group {margin-bottom: 37px;}

.ud-card-layout {
  display: grid;
  grid-template-columns: 1fr 540px;
  gap: 32px;
  align-items: center;
}

.ud-form-section {
  min-width: 0;
}

.ud-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 340px;
}

.ud-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.ud-form-group {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.ud-form-label {
  font-size: 14px;
  color: #333;
  margin: 0;
}

.ud-required {
  color: #e53e3e;
}

.ud-form-input {
  width: 100%;
  padding: 16px 14px;
  font-size: 15px;
  color: #333;
  border: 1px solid #ececec;
  border-radius: 6px;
  box-sizing: border-box;
}

.ud-form-input::placeholder {
  color: #aaa;
}

.ud-form-input:focus {
  outline: none;
  border-color: #667eea;
}

.ud-form-input.ud-input-error {
  border-color: #e53e3e;
  border: 1px solid #ECECEB;
  background: #f9fafb;
}

.ud-form-input.ud-input-error:focus {
  border-color: #e53e3e;
}

.ud-form-input.ud-input-disabled,
.ud-form-input:disabled {
  background: #f9fafb;
  color: #6b7280;
  cursor: not-allowed;
}

.ud-radio-group {
  display: flex;
  gap: 24px;
  padding: 12px 14px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background: white;
  flex-wrap: wrap;
  transition: border-color 0.2s;
}

.ud-radio-group.ud-radio-error {
  border-color: #e53e3e;
}

.ud-radio-group.ud-radio-disabled {
  background: #f9fafb;
  border-color: #e5e7eb;
}

.ud-radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.ud-radio-label.ud-label-disabled {
  cursor: not-allowed;
}

.ud-radio-label input[type='radio'] {
  width: 16px;
  height: 16px;
  accent-color: #35659E;
  cursor: pointer;
}

.ud-radio-label.ud-label-disabled input[type='radio'] {
  cursor: not-allowed;
  accent-color: #bbb;
}

.ud-radio-label.ud-label-disabled .ud-radio-text {
  color: #9ca3af;
}

.ud-radio-text {
  font-size: 14px;
  color: #333;
  font-weight: 500;
}

.ud-error-msg {
  font-size: 12px;
  color: #e53e3e;
  margin: 0;
  display: block;
}

.ud-bottom-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 20px;
  background: #ffffff;
  margin-top: 0;
  position: sticky;
  bottom: 0;
  z-index: 999;
  gap:20px;
  border-top: 1px solid #eee;
}

.ud-btn-cancel {
  padding: 14px 0;
  width: 230px;
  font-size: 17px;
  background: #fff;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  border: 1px solid #b6b6b6;
  font-weight: 500;
}

.ud-btn-cancel:hover {background: #f3f1f8;}

.ud-btn-submit {
  padding: 14px 0;
  width: 230px;
  font-size: 17px;
  font-weight: 500;
  color: #ffffff;
  background: #35659E;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
  text-transform: uppercase;
  border: 1px solid #35659E;
}

.ud-btn-submit:active {
  transform: scale(0.98);
}

.ud-btn-submit:disabled {
  background: #9ca3af;
  cursor: not-allowed;
  transform: none;
  border-color: #9ca3af;
}

/* .ud-btn-edit-only {
  margin-left: auto;
} */

.create-project {
  width: auto;
  height: 100%;
  /* opacity: 0.9;*/
} 






/* ============================================================
   10. PLAN CARD  (PlanCard.css)
   ============================================================ */
.plan-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 28px 28px;
}

.plan-card__icon {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.plan-card__title {
  font-size: 17px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 16px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.4;
}

.plan-card__label {
  font-size: 16px;
  font-weight: 600;
  color: #1FA0CC;
  margin: 0 0 6px 0;
  letter-spacing: 0.3px;
}

.plan-card__price {
  font-size: 42px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 24px 0;
  line-height: 1;
}

.plan-card__divider {
  width: 103%;
  border: none;
  border-top: 1px solid #e5e7eb;
}

.plan-card__features {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  text-align: left;
}

.plan-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}

.plan-card__features li:last-child {
  margin-bottom: 0;
}

.plan-card__check {
  color: #4CAF50;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1.4;
}

.unlimited-access-card { width: 30%; padding: 20px; }

.pricing-card {
  display: flex;
  flex-direction: column;
}

.pricing-card a {
  margin-top: auto;
  width: 180px;
}

.plan-name { font-size: 26px; margin: 0; font-weight: 600; color: #213547; }

.price { display: flex; align-items: baseline; margin-bottom: 0px; }
.currency { font-size: 28px; font-weight: 600; margin-right: 5px; color:#000; }
.amount { font-size: 50px; font-weight: 600; color:#000; }
.period { color: #ccc; margin-left: 10px; }

.description-text { color: var(--text-light); line-height: 1.5; margin-bottom: 30px; min-height: 48px; font-size: 16px; color: #213547; }

.features-section { margin-bottom: 30px; flex-grow: 1; }

.divider {
  position: relative;
  text-align: left;
  margin-bottom: 30px;
}
.divider::before {
  content: "";
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 1px; background-color: #d1e3ff;
  z-index: 1;
}
.divider span {
  position: relative; z-index: 2;
  background: white; padding: 6px 15px;
  color: #3b82f6; font-size: 13px; font-weight: 800;
  border: 1px solid #3b82f6; border-radius: 6px; margin-left: 25px;
}

.feature-list { list-style: none; padding: 0; margin: 0; }
.feature-list li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  font-size: 15px;
  color: #444;
}
.feature-list li::before {
  content: "";
  position: absolute; left: 0; top: 2px;
  width: 18px; height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23446db2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z'/%3E%3C/svg%3E");
  background-size: contain;
}

.feature-list li strong {font-weight: 800;}


/* ============================================================
   11. BUY NOW  (BuyNow.css)
   ============================================================ */
.buynow-header {
  /* padding: 30px 20px; */
  height: 36px;
}

.buynow-wrapper {
  /* min-height: 100vh;
  display: flex;
  flex-direction: column; */
  background: #f3f4f6;
}

.buynow-content {
  display: flex;
  gap: 20px;
  max-width: 2000px;
  margin: 40px 40px 40px 40px;
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  gap: 0;
  position: relative;
}

.buynow-pricing-card {
  background: #ffffff;
  width: 340px;
  min-height: fit-content;
  /* position: sticky; */
  top: 24px;
  border-right: 1px solid #e5e7eb;
  padding-right: 40px;
}

.buynow-pricing-title {
  font-size: 13px;
  font-weight: 700;
  color: #888;
  margin: 0 0 28px 0;
  padding-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid #e5e7eb;
}

.buynow-pricing-price {
  margin-bottom: 32px;
  padding: 20px 22px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 12px;
  border: none;
  color: white;
}

.buynow-price-label {
  color: rgba(255, 255, 255, 0.85);
}

.buynow-price-amount {
  color: white;
  font-size: 30px;
}

.buynow-pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.buynow-pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

.buynow-pricing-features li:last-child {
  margin-bottom: 0;
}

.buynow-check-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.buynow-right {
  flex: 1;
  background: #ffffff;
  overflow: hidden;
  /* min-height: 520px; */
  min-height: fit-content;
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 40px;
}

.buynow-panel-loader {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.buynow-panel-loader-gif {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.buynow-panel-loader-msg {
  margin: 12px 0 0;
  font-size: 14px;
  color: #555;
  font-weight: 500;
}

.buynow-tabs-header {
  display: flex;
  background: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
}

.buynow-tab-btn {
  flex: 1;
  padding: 18px 24px;
  background: #ffffff;
  color: #999;
  border: none;
  border-bottom: 3px solid transparent;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  letter-spacing: 0px;
  text-transform: uppercase;
  border-radius: 0;
}

.buynow-tab-btn.buynow-tab-active {
  background: #ffffff;
  color: #35659e;
  border-bottom: 3px solid #35659e;
  border-radius: 0;
}

.buynow-tab-btn.buynow-tab-disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.buynow-tab-panel {
  background: #ffffff;
  padding: 20px 10px;
  flex: 1;
  /* overflow-y: auto; */
  max-width: 560px;
  width: 100%;
}

.buynow-tab-panel > * {
  max-width: 100%;
}

.buynow-tab-panel--payment {
  max-width: 1160px;
}

.buynow-tab-panel input:not(.otp-input__digit):hover,
.buynow-tab-panel textarea:hover,
.buynow-tab-panel select:hover {
  background: inherit !important;
  border-color: #d1d5db !important;
}

.buynow-tab-panel input:focus,
.buynow-tab-panel textarea:focus,
.buynow-tab-panel select:focus {
  outline: none;
  border-color: #667eea;
}

.buynow-form-heading {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 28px 0;
}

.buynow-payment-header {
  text-align: left;
  margin-bottom: 32px;
}

.buynow-payment-header h1 {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 8px 0;
}

.buynow-payment-description {
  font-size: 14px;
  color: #888;
  margin: 0;
}

.bn-loading-container {
  text-align: center;
  padding: 48px 20px;
}

.bn-spinner {
  width: 44px;
  height: 44px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #667eea;
  border-radius: 50%;
  animation: bn-spin 0.9s linear infinite;
  margin: 0 auto 16px;
}

@keyframes bn-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.bn-loading-container p {
  color: #777;
  font-size: 15px;
  margin: 0;
}

.bn-error-container {
  text-align: center;
  padding: 24px;
}

.bn-error-icon {
  font-size: 44px;
  margin-bottom: 16px;
}

.bn-error-container h2 {
  font-size: 20px;
  color: #1a1a1a;
  margin: 0 0 12px 0;
}

.bn-error-message {
  color: #df1b41;
  font-size: 14px;
  margin: 0 0 24px 0;
  padding: 12px;
  background: #fef2f2;
  border-radius: 8px;
  border: 1px solid #fecaca;
}

.bn-retry-button {
  background: #35659E;
  color: white;
  border: none;
  padding: 12px 32px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}

.bn-retry-button:active {
  transform: translateY(0);
}

.bn-edit-mobile-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bn-edit-mobile-label {
  font-size: 13px;
  color: #666;
  margin: 0;
  font-weight: 500;
}

.bn-edit-mobile-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bn-edit-mobile-input {
  flex: 1;
  min-width: 0;
  margin: 0 !important;
}

.bn-edit-mobile-send {
  flex-shrink: 0;
  padding: 10px 18px;
  background: #35659E;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.bn-edit-mobile-send:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.bn-edit-mobile-cancel {
  flex-shrink: 0;
  padding: 10px 14px;
  background: #f3f4f6;
  color: #555;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.bn-edit-mobile-cancel:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.bn-otp-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  padding: 8px 0;
}

.bn-otp-sent-msg {
  font-size: 14px;
  color: #555;
  text-align: center;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  line-height: 1.5;
}

.bn-otp-sent-msg strong {
  color: #1a1a1a;
}

.bn-otp-edit-btn {
  background: none;
  border: none;
  color: #667eea;
  cursor: pointer;
  padding: 2px 4px;
  display: inline-flex;
  align-items: center;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
  flex-shrink: 0;
}

.bn-otp-form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
}

.bn-otp-verify-btn {
  width: 100%;
  max-width: 320px;
}

.bn-otp-resend {
  font-size: 14px;
  color: #777;
  text-align: center;
  margin: 0;
}

.bn-otp-resend-link {
  background: none;
  border: none;
  color: #667eea;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  padding: 0;
  transition: color 0.15s;
}

.bn-otp-resend-link.bn-otp-resend-disabled,
.bn-otp-resend-link:disabled {
  color: #bbb;
  cursor: not-allowed;
}

.bn-otp-timer {
  font-weight: 600;
  color: #333;
}






/* ============================================================
   12. PAYMENT HISTORY  (PaymentHistory.css)
   ============================================================ */
.payment-history-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #f3f4f6;
}

.payment-history-content {
  flex: 1;
  margin: 16px 16px 16px 16px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  padding: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.payment-history-header {
  margin-bottom: 23px;
}

.payment-history-header h1 {
  font-size: 22px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 6px 0;
}

.payment-history-subtitle {
  font-size: 14px;
  color: #888;
  margin: 0;
}

.payment-history-no-record {
  text-align: center;
  font-size: 15px;
  color: #666;
  padding: 48px 20px;
}

.payment-history-table-container {
  background: white;
  border-radius: 0px;
  overflow: hidden;
}

.payment-history-table {
  width: 100%;
  border-collapse: collapse;
}

.payment-history-table thead {
  background: #9e9e9e;
  color: white;
}

.payment-history-table th {
  padding: 16px;
  text-align: left;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  user-select: none;
  transition: background 0.2s;
  background: #FAFAFA;
  color: #949494;
  white-space: nowrap;
  border-top: 1px solid #F0F0F0;
  border-bottom: 1px solid #F0F0F0;
}

.payment-history-table th:hover {
  background: #f1f1f1;
}

.th-content {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.sort-icon {
  font-size: 16px;
  opacity: 0.8;
}

.payment-history-table tbody tr {
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.2s;
}

.payment-history-table tbody tr:hover {
  background: #f9fafb;
}

.payment-history-table tbody tr:last-child {
  border-bottom: none;
}

.payment-history-table td {
  padding: 16px;
  font-size: 14px;
  color: #333;
}

.transaction-id {
  color: #35659E;
  font-weight: 500;
}

.status-badge {
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
}

.status-completed {
  background: #e8f5e9;
  color: #2e7d32;
}

.status-failed {
  background: #ffebee;
  color: #c62828;
}

.action-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.download-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: #fff;
  color: #35659E;
  border: 1px solid #35659e;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.download-btn:hover:not(:disabled) {
  background: #2a4f80;
  transform: translateY(-1px);
  color: white;
}

.download-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  opacity: 0.6;
}

.download-btn svg {
  flex-shrink: 0;
}

.ph-pagination-footer {
  background: white;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  bottom: 0;
  z-index: 100;
}

.pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-top: 1px solid #f0f0f0;
}

/* .pagination-btn {
  padding: 10px 20px;
  border: 2px solid #35659E;
  background: white;
  color: #35659E;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
} */

.pagination-btn {
  padding: 14px 0;
    width: 230px;
    font-size: 17px;
    font-weight: 500;
    color: #fff;
    background: #35659e;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background .2s;
    text-transform: uppercase;
}

.pagination-btn:hover:not(:disabled) {
  background: #35659E;
  color: white;
}

/* .pagination-btn:disabled {
  border-color: #ccc;
  color: #ccc;
  cursor: not-allowed;
} */

.pagination-btn:disabled {
border: 1px solid #b6b6b6;
background: #f3f1f8;
color: #fff;
}

.pagination-btn.previous:disabled {
border: 1px solid #b6b6b6;
background: #f3f1f8;
color: #fff;
}

.pagination-btn.previous {
border: 1px solid #b6b6b6;
background: #f3f1f8;
color: #000;
}


.pagination-pages {
  display: flex;
  gap: 8px;
}

.pagination-page {
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  background: white;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}

.pagination-page:hover {
  border-color: #35659E;
  color: #35659E;
}

.pagination-page.active {
  background: #35659E;
  color: white;
  border-color: transparent;
}

.ph-subscription-notice {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 6px;
  padding: 14px 16px;
  margin-top: 16px;
  margin-inline: 18px;
}

.ph-subscription-notice-content {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex: 1;
}

.ph-subscription-notice-content svg {
  flex-shrink: 0;
  margin-top: 1px;
}

.ph-subscription-notice-content p {
  margin: 0;
  font-size: 14px;
  color: #1e40af;
  line-height: 1.5;
}

.ph-subscription-notice-content strong {
  font-weight: 600;
}

.ph-subscription-notice-close {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  color: #6b7280;
  flex-shrink: 0;
  transition: color 0.15s;
}

.ph-subscription-notice-close:hover {
  color: #1e40af;
}

.ph-cancel-link-text {
  font-size: 15px;
  color: #333;
  margin: 20px 0 0 0;
}

.ph-cancel-inline-link {
  background: none;
  border: none;
  padding: 0;
  font-size: 15px;
  color: #35659E;
  text-decoration: underline;
  cursor: pointer;
}

.ph-cancel-inline-link:hover {
  color: #2a4f80;
}








/* ============================================================
   13. ACTIVATE PLAN MODAL  (ActivatePlanModal.css)
   ============================================================ */
.activate-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: activateFadeIn 0.2s ease-out;
}

@keyframes activateFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.activate-modal-content {
  background: white;
  border-radius: 6px;
  padding: 40px 36px 36px;
  max-width: 380px;
  width: 90%;
  text-align: center;
  animation: activateSlideUp 0.3s ease-out;
}

@keyframes activateSlideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.activate-modal-icon {
  width: auto;
  height: 40px;
  object-fit: contain;
  margin-bottom: 10px;
  animation: activateScaleIn 0.4s ease-out 0.1s backwards;
}

@keyframes activateScaleIn {
  from { opacity: 0; transform: scale(0.5); }
  to   { opacity: 1; transform: scale(1); }
}

.activate-modal-title {
  font-size: 22px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 16px 0;
  letter-spacing: 0.3px;
}

.activate-modal-message {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin: 0 0 32px 0;
}

.activate-modal-message strong {
  color: #1a1a1a;
}

.activate-modal-actions {
  display: flex;
  gap: 12px;
}

.activate-modal-btn {
  display: inline-block;
  padding: 14px 24px;
  border: none;
  background: #35659E;
  color: white;
  font-size: 15px;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: auto;
  flex: 1;
}

.activate-modal-btn:active:not(:disabled) {
  transform: translateY(0);
}

.activate-modal-btn:disabled {
  background: #9e9e9e;
  cursor: not-allowed;
}

.activate-modal-btn--no {
  background: transparent;
  color: #35659E;
  border: 2px solid #35659E;
}

.activate-modal-btn--no:disabled {
  background: transparent;
  color: #9e9e9e;
  border-color: #9e9e9e;
}



/* ============================================================
   14. ACTIVATION SUCCESS MODAL  (ActivationSuccessModal.css)
   ============================================================ */
.activate-success-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: activateFadeIn 0.2s ease-out;
}

.activate-success-content {
  background: white;
  border-radius: 6px;
  padding: 40px 36px 36px;
  max-width: 360px;
  width: 90%;
  text-align: center;
  animation: activateSlideUp 0.3s ease-out;
}

.activate-success-icon {
  width: auto;
  height: 40px;
  margin-bottom: 20px;
}

.activate-success-title {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 28px 0;
  line-height: 1.4;
}

.activate-success-btn {
  display: inline-block;
  padding: 13px 30px;
  border: none;
  background: #35659E;
  color: white;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.3px;
}

.activate-success-btn:active {
  transform: translateY(0);
}


/* ============================================================
   15. CANCEL MEMBERSHIP  (CancelMembership.css)
   ============================================================ */
.cancel-membership-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #f5f5f5;
}

.tabs-section {
  background: white;
  padding: 16px 40px;
  display: flex;
  justify-content: center;
  border-bottom: 1px solid #e0e0e0;
}

.tabs-section .header-tabs {
  display: flex;
  gap: 8px;
  background: #f5f5f5;
  padding: 4px;
  border-radius: 8px;
}

.tabs-section .header-tab {
  padding: 8px 20px;
  border: none;
  background: transparent;
  color: #666;
  font-size: 13px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tabs-section .header-tab.active {
  background: white;
  color: #667eea;
}

.tabs-section .header-tab:hover:not(.active) {
  color: #333;
}

.cancel-membership-content {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.cancel-form-card {
  margin: 16px 16px 16px 16px;
  background: white;
  border-radius: 12px;
  padding: 48px;
  width: 100%;
}

.cancel-heading {
  font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 10px;
}

.cancel-subtitle {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin: 0 0 40px 0;
}

.cancel-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-label {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.form-select {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  color: #333;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  background: white;
  cursor: pointer;
  transition: all 0.2s;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-select:focus {
  outline: none;
  border-color: #667eea;
}

.form-select:hover {
  border-color: #667eea;
}

.form-textarea {
  padding: 14px 16px;
  font-size: 15px;
  color: #333;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  background: white;
  transition: all 0.2s;
  resize: vertical;
  min-height: 120px;
}

.form-textarea:focus {
  outline: none;
  border-color: #667eea;
}

.form-textarea:hover {
  border-color: #667eea;
}

.form-textarea::placeholder {
  color: #999;
}

.form-helper-text {
  font-size: 13px;
  color: #999;
  margin: -8px 0 0 0;
}

.cancel-form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: #ffffff;
  position: sticky;
  bottom: 0;
  z-index: 10;
}

/* .cancel-stay-btn {
  padding: 13px 0;
  width: 230px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: #35659E;
  background: transparent;
  border: 1.5px solid #35659E;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-transform: uppercase;
}

.cancel-stay-btn:hover {
  background: #f0f4fa;
} */

.cancel-stay-btn {
padding: 14px 0;
    width: 230px;
    font-size: 15px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    border: 1px solid #b6b6b6;
    color: #000;
}

.cancel-stay-btn:hover {
  background: #f3f1f8;
}

.cancel-confirm-btn {
  padding: 14px 0;
  width: 230px;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.8px;
  color: white;
  background: #35659E;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  text-transform: uppercase;
}

.cancel-confirm-btn:hover {
  background: #35659E;
}

.cancel-confirm-btn:active {
  transform: scale(0.98);
}

.cancel-confirm-btn:disabled {
  background: #f5a0a0;
  cursor: not-allowed;
  transform: none;
}







/* ============================================================
   16. CANCELLATION MODAL  (CancellationModal.css)
   ============================================================ */
.cancellation-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeIn 0.2s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.cancellation-modal-content {
  position: relative;
  background: white;
  border-radius: 6px;
  padding: 36px 32px 32px;
  max-width: 360px;
  width: 90%;
  text-align: center;
  animation: slideUp 0.3s ease-out;
}

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

.cancellation-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 16px;
  color: #999;
  cursor: pointer;
  line-height: 1;
  padding: 2px 6px;
  transition: color 0.2s;
}

.cancellation-modal-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 48px;
  line-height: 1;
  animation: scaleIn 0.4s ease-out 0.1s backwards;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.cancellation-modal-title {
  font-size: 22px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 14px 0;
  /* text-transform: uppercase; */
  letter-spacing: 0.3px;
}

.cancellation-modal-message {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0 0 28px 0;
}

.cancellation-modal-button {
  display: inline-block;
  padding: 12px 56px;
  border: none;
  background: #35659E;
  color: white;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
  letter-spacing: 0.3px;
}

.cancellation-modal-button:active {
  background: #234070;
}




/* ============================================================
   17. CONFIRM DIALOG  (ConfirmDialog.css)
   ============================================================ */
.confirm-dialog-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: confirmFadeIn 0.2s ease-out;
}

@keyframes confirmFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.confirm-dialog-content {
  background: white;
  border-radius: 6px;
  padding: 36px 32px 32px;
  max-width: 380px;
  width: 90%;
  text-align: center;
  animation: confirmSlideUp 0.25s ease-out;
}

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

.confirm-dialog-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin-bottom: 16px;
}

.confirm-dialog-title {
font-size: 22px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 16px;
    letter-spacing: .3px;
}

.confirm-dialog-message {
  font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin: 0 0 32px;
}

.confirm-dialog-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.confirm-dialog-btn {
    flex: 1;
    padding: 14px 24px;
    border: none;
    background: #35659e;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: all .2s;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.confirm-dialog-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.confirm-dialog-cancel {
 background: transparent;
    color: #35659e;
    border: 2px solid;
}

.confirm-dialog-ok {
  background: #35659E;
  color: white;
}




/* ============================================================
   18. NOT FOUND PAGE  (NotFoundPage.css)
   ============================================================ */
.not-found-page {
  min-height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  background-image: url('/public/images/desktop_background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.not-found-page__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(30, 45, 65, 0.5) 0%,
    rgba(30, 45, 65, 0.35) 50%,
    rgba(30, 45, 65, 0.2) 100%
  );
  pointer-events: none;
}

.not-found-page__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 400px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.not-found-page__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.not-found-page__main {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.not-found-page__code {
  font-size: 7rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.15);
  line-height: 1;
  margin: 0 0 0.25rem;
  letter-spacing: -4px;
}

.not-found-page__heading {
  margin: 0 0 0.75rem;
  font-size: 1.6rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.98);
}

.not-found-page__description {
  margin: 0 0 2rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
  max-width: 300px;
}

.not-found-page__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem;
  width: 100%;
  background: #35659E;
  border: none;
  border-radius: 6px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease;
}

.not-found-page__button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 2px;
}




/* ============================================================
   19. STRIPE PAYMENT WRAPPER  (StripePaymentWrapper.css)
   ============================================================ */
.payment-page-wrapper {
  /* min-height: 100vh;
  display: flex;
  flex-direction: column; */
  background: #f3f4f6;
}

.payment-page-content {
  flex: 1;
  display: flex;
  gap: 20px;
  max-width: 2000px;
  margin: 16px 16px 16px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  padding: 28px 30px;
  /* position: relative; */
  height: calc(100vh - 92px);
    overflow-y: scroll;
}

.unlimited-access-card {
  border-right: 1px solid #e5e7eb;
  background: #ffffff;
  padding: 0px 20px;
  flex-shrink: 0;
  min-height: 520px;
}

.access-title {
  font-size: 13px;
  font-weight: 700;
  color: #888;
  margin: 0 0 28px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.access-price {
  margin-bottom: 32px;
  padding: 20px 22px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 12px;
  border: none;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price-label {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

.price-amount {
  font-size: 30px;
  font-weight: 700;
  color: white;
}

.access-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.access-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

.access-features li:last-child {
  margin-bottom: 0;
}

.check-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.stripe-payment-card {
  flex: 1;
  background: #ffffff;
  padding: 42px 56px;
  min-height: 520px;
}

.payment-header {
  text-align: center;
  margin-bottom: 32px;
}

.payment-header h1 {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 8px 0;
}

.payment-description {
  font-size: 14px;
  color: #888;
  margin: 0;
}

.footer-secure-notice {
  font-size: 13px;
  color: #666;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

.loading-container {
  text-align: center;
  padding: 48px 20px;
}

.spinner {
  width: 44px;
  height: 44px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #35659E;
  border-radius: 50%;
  animation: spp-spin 0.9s linear infinite;
  margin: 0 auto 16px;
}

@keyframes spp-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loading-container p {
  color: #777;
  font-size: 15px;
  margin: 0;
}

.init-error-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  min-height: 400px;
  animation: cf-modal-in 0.25s ease-out;
}

.init-error-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid #e53935;
  color: #e53935;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  flex-shrink: 0;
}

.init-error-title {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 10px;
  letter-spacing: 0.3px;
}

.init-error-description {
  font-size: 14px;
  color: #666;
  margin: 0 0 16px;
  max-width: 380px;
}

.init-error-btn {
  padding: 13px 40px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  background: #35659E;
  color: #fff;
  transition: background 0.2s ease, transform 0.1s ease;
}

.init-error-btn:active {
  transform: translateY(0);
}

.subscription-active-logo {
  top: 110px;
  left: 653px;
  width: 150px;
  height: 150px;
  background: transparent;
  opacity: 0.8;
  margin: 0px 0px 10px 0px;
}

.p-HeightObserverProvider {display: flex !important;}










/* ============================================================
   20. CHECKOUT FORM & MODALS  (CheckoutForm.css)
   ============================================================ */
.checkout-form {
  width: 100%;
}

.payment-element-container {
  margin-bottom: 24px;
}

/* Hide Stripe "Powered by Stripe" external badge that overlaps sticky footer buttons */
.payment-element-container ~ a[href*="stripe.com"],
.checkout-form ~ a[href*="stripe.com"][target="_blank"],
.__PrivateStripeElement + a[href*="stripe.com"] {
  display: none !important;
}

.error-alert {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #fef2f2;
  border: 1px solid #fee;
  border-radius: 8px;
  margin-bottom: 20px;
}

.error-alert .error-icon {
  font-size: 18px;
  flex-shrink: 0;
}

.error-text {
  color: #df1b41;
  font-size: 14px;
  line-height: 1.4;
}

.submit-button {
  background: #35659E;
  color: white;
  border: none;
  padding: 16px 24px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.submit-button:active:not(:disabled) {
  transform: translateY(0);
}

.submit-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.button-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.z7mZYGiW__FloatingActionButton {
  display: none !important;
}

.LcvUkwqF__Container{
  display:none !important;
}

.bHb69oqj__Frame .dvo70Wt3__Frame-item HdgSqQWW__Frame-item--bottomRight button{
  display:none !important;
}


/* ============================================================
   LOGIN PAGE — Terms checkbox (sign-up flow only)
   ============================================================ */
.login-page__terms {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  width: 100%;
  text-align: left;
}

.login-page__terms-checkbox {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  margin-top: 0.125rem;
  accent-color: #35659E;
  cursor: pointer;
}

.login-page__terms-label {
  font-size: 0.825rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  user-select: none;
}

.login-page__terms-link {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.15s ease;
}

.login-page__terms-link:hover {
  color: #ffffff;
}

/* ============================================================
   POLICY PAGES — Terms of Service & Privacy Policy
   ============================================================ */
.policy-page {
  --login-bg-url: url('/public/images/desktop_background.png');
  min-height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background-image: var(--login-bg-url);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 2rem 1rem;
  box-sizing: border-box;
}

.policy-page__overlay {
  position: fixed;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 25, 40, 0.75) 0%,
    rgba(30, 45, 65, 0.6) 50%,
    rgba(30, 45, 65, 0.5) 100%
  );
  pointer-events: none;
}

.policy-page__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.policy-page__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.policy-page__logo {
  color: rgba(255, 255, 255, 0.95);
}

.policy-page__brand {
  margin: 0;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.98);
  text-transform: uppercase;
}

.policy-page__back {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-bottom: 1.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.policy-page__back:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.policy-page__title {
  margin: 0 0 0.375rem;
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
}

.policy-page__effective {
  margin: 0 0 2rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

.policy-page__section {
  width: 100%;
  margin-bottom: 1.75rem;
}

.policy-page__section-title {
  margin: 0 0 0.625rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.98);
}

.policy-page__text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}

.policy-page__list {
  margin: 0.5rem 0 0;
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.policy-page__list-item {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
}

.policy-page__link {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.policy-page__link:hover {
  color: #ffffff;
}

/* Support menu pop-up */
.support-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: supportFadeIn 0.2s ease-out;
}

.support-modal-content {
  position: relative;
  background: #fff;
  border-radius: 6px;
  padding: 40px 36px 36px;
  max-width: 380px;
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  animation: supportSlideUp 0.3s ease-out;
}

.support-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 22px;
  line-height: 1;
  color: #666;
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 4px;
}

.support-modal-close:hover {
  color: #1a1a1a;
  background: #f0f0f0;
}

.support-modal-icon {
  margin-bottom: 16px;
}

.support-modal-title {
  font-size: 20px;
  font-weight: 600;
  color: #0b1c3d;
  letter-spacing: -0.5px;
  margin: 0 0 12px;
}

.support-modal-message {
  font-size: 15px;
  color: #868686;
  line-height: 1.7;
  margin: 0 0 16px;
  font-weight: 500;
}

.support-modal-email {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: #0b1c3d;
    font-size: 17px;
    font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
}

.support-copy-icon {
  flex-shrink: 0;
  text-decoration: none;
}

.support-modal-email:hover {
  color: #254d7e;
}

.copy-text {color: #868686;
    margin-left: 6px;
    font-size: 15px;
    font-weight: 400; display: inline-block;}


.copy-wrapper {color: #868686;
    margin-left: 6px;}



@keyframes supportFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes supportSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 480px) {
  .support-modal-content {
    padding: 36px 24px 28px;
  }
}

@media (max-width: 480px) {
  .policy-page {
    padding: 1.5rem 1rem;
  }
  .policy-page__title {
    font-size: 1.4rem;
  }
  .policy-page__section-title {
    font-size: 1rem;
  }
  .policy-page__text,
  .policy-page__list-item {
    font-size: 0.875rem;
  }
  .login-page__terms-label {
    font-size: 0.775rem;
  }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.secure-notice {
  text-align: center;
  color: #666;
  font-size: 13px;
  margin: 16px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.success-container {
  text-align: center;
  padding: 40px 20px;
}

.success-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: bold;
  margin: 0 auto 24px;
  animation: checkoutScaleIn 0.5s ease-out;
}

@keyframes checkoutScaleIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.success-container h2 {
  font-size: 24px;
  color: #1a1a1a;
  margin: 0 0 12px 0;
  font-weight: 700;
}

.success-message {
  color: #4caf50;
  font-size: 16px;
  margin: 0 0 8px 0;
  font-weight: 500;
}

.success-detail {
  color: #666;
  font-size: 14px;
  margin: 0;
  line-height: 1.5;
}

.cf-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.cf-modal {
  position: relative;
  background: #fff;
  border-radius: 12px;
  padding: 30px 30px 30px;
  width: 340px;
  max-width: 90vw;
  text-align: center;
  animation: cf-modal-in 0.2s ease-out;
}

@keyframes cf-modal-in {
  from { transform: scale(0.9); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}

.cf-modal-close {
  position: absolute;
  top: 8px;
  right: 16px;
  background: none;
  border: none;
  font-size: 22px;
  color: #999;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
}

.cf-modal-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.buynow-payment-section .cf-modal-icon {
  width: 70px;
  height: 70px;
}

.buynow-payment-section .cf-modal-icon .payment-success-icon {
  width: -webkit-fill-available;
} 

.cf-modal-icon--success {
  border: 2px solid #4caf50;
  color: #4caf50;
}

.cf-modal-icon--failed {
  border: 2px solid #e53935;
  color: #e53935;
}

.cf-modal-icon--congrats {
  font-size: 32px;
  border: none;
  background: none;
}

.cf-modal-title {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 12px;
  letter-spacing: 0.3px;
}

.cf-modal-description {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0 0 28px;
}

.cf-modal-btn {
  padding: 13px 24px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background 0.2s ease;
}

.cf-modal-btn--ok {
  background: #35659E;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.2s;
}

.cf-modal-btn--ok:active { transform: translateY(0); }

.member-cancel-model {width:auto; height: 40px; margin-bottom: 16px;}




@media (max-width: 1200px) {
  .payment-history-table {font-size: 13px;}
  .payment-history-table th, .payment-history-table td {padding: 12px; }
}



@media (max-width: 1024px) {
  .buynow-content {flex-direction: column; padding: 16px;}
  .buynow-pricing-card {width: 100%; position: relative; top: 0;}
  .payment-page-content {flex-direction: column; padding: 16px; }
  .unlimited-access-card {width: auto; position: relative; top: 0; min-height: unset; border-right: 0;}
  .user-details-content.buynow {display: block; height: auto; overflow: auto;}
  .buynow-pricing-card {padding-right: 0px; border-right:0;}
  .buynow-right {padding-left: 0px;}
  .description-text {min-height: 0;line-height: 1;}
}

@media (max-width: 992px) {
  .payment-history-content {margin: 16px; padding: 16px;}
  .payment-history-header h1 {font-size: 20px;}
  .payment-history-table-container {overflow-x: auto;}
  .payment-history-table {min-width: 900px;}
  .tabs-section {display: none;}
  .cancel-form-card {padding: 32px;}
}




@media (max-width: 768px) {
  .payment-page-header {padding: 14px 16px;}
  .header-title {font-size: 16px; display: contents;}
  .create-project-btn {padding: 7px 14px;font-size: 12px;}
  .payment-page-footer {padding: 16px 20px;}
  /* .footer-clear-btn,.footer-submit-btn {padding: 10px 24px;font-size: 13px;} */
  .ud-card-layout { grid-template-columns: 1fr auto; }
  .ud-illustration {display: none;}
  .user-details-content {margin: 16px 16px 16px 16px; padding: 20px 16px;}
  .user-details-heading {font-size: 20px; margin-bottom: 20px;}
  .ud-bottom-bar {padding: 14px 16px;}
  .ud-btn-cancel, .ud-btn-submit {width: 140px;}
  .buynow-content { margin: 16px auto; width: calc(100% - 32px); padding: 12px; }
  .buynow-tab-panel {padding: 28px 24px; width:auto;}
  .buynow-form-heading {font-size: 18px;}
  .buynow-payment-header h1 {font-size: 18px;}
  .payment-history-content {margin: 16px auto; width: calc(100% - 32px); padding: 12px;}
  .payment-history-header h1 {font-size: 18px;}
  .payment-history-subtitle {font-size: 13px;}
  .ph-pagination-footer { /* flex-direction: column; */ gap: 12px; padding: 12px 16px;} 
  .pagination {flex-direction: column; gap: 16px;}
  .pagination-pages {order: 0;}
  .tabs-section {padding: 12px 20px;}
  .cancel-heading {font-size: 24px;}
  .cancel-subtitle {font-size: 14px;}
  /* .payment-page-content {margin: 16px auto; width: calc(100% - 32px); padding: 12px;} */
  .payment-page-content {margin: 20px; padding: 15px;}
  .stripe-payment-card { padding: 28px 24px;}
  .payment-header h1 {font-size: 20px;}
  /* .footer-clear-btn, .footer-submit-btn { padding: 10px 24px; font-size: 13px;} */
  .plan-name {font-size: 22px;}  
  .amount {font-size: 40px;}
  .pagination-btn {width: 140px;}
  .footer-submit-btn, .footer-clear-btn  {width: 140px;}
}




@media (max-width: 640px) {
  .submit-button {padding: 14px 20px; font-size: 15px;}
  .success-container {padding: 30px 15px;}
  .success-container h2 {font-size: 20px;}
  .success-message {font-size: 15px;}
}



@media (max-width: 480px) {
  .header-right {gap: 8px;}
  .create-project-btn { display: none;}
  .payment-page-footer {justify-content: space-between;}
  /* .footer-clear-btn, .footer-submit-btn {flex: 1; padding: 12px 16px;} */
  .login-page { --login-content-padding: 1.5rem; /* padding: 1rem;*/} 
  .login-page__brand { font-size: 1.6rem; letter-spacing: 0.12em; }
  .login-page__heading {font-size: 1.25rem;}
  .login-page__description {font-size: 0.9rem;}
  .login-page__input-wrapper,.login-page__button {padding: 0.9rem 1rem;}
  .otp-page { --otp-content-padding: 1.5rem; /* padding: 1rem;*/ }
  .otp-page__brand {font-size: 1.6rem; letter-spacing: 0.12em;}
  .otp-page__heading {font-size: 1.25rem;}
  .otp-page__description { font-size: 0.9rem;}
  .toast {left: 1rem; right: 1rem; min-width: auto; top: 1rem;}
  .ud-form-row {grid-template-columns: 1fr; gap:0;}
  .user-details-content {margin: 12px 12px 12px 12px; padding: 15px;}
  .user-details-heading {font-size: 18px;}
  .ud-form-input {font-size: 14px; padding: 11px 12px;}
  .ud-radio-group {flex-direction: column; gap: 12px;}
  .ud-bottom-bar {padding: 12px;}
  .ud-btn-cancel, .ud-btn-submit {width: 130px; font-size: 12px; padding: 12px 0;}
  .buynow-content {margin: 12px auto; width: calc(100% - 24px); padding: 10px;}
  .buynow-tab-panel {padding: 20px 16px;}
  .buynow-tab-btn {padding: 14px 12px; font-size: 14px;}
  .payment-history-content {margin: 12px auto; width: calc(100% - 24px); padding: 10px;}
  .pagination-btn {padding: 8px 16px; font-size: 12px;}
  .pagination-page {width: 36px; height: 36px; font-size: 13px;}
  .activate-modal-content { padding: 32px 24px 28px; width: 92%;}
  .activate-modal-title {font-size: 20px;}
  .activate-modal-message {font-size: 13px;}
  .activate-modal-btn {font-size: 14px; padding: 12px 20px;}
  .cancel-stay-btn, .cancel-confirm-btn {width: 140px; font-size: 13px;}
  .cancel-heading {font-size: 20px;}
  .form-label {font-size: 14px;}
  .form-select, .form-textarea {font-size: 14px; padding: 12px;}
  .cancellation-modal-content {padding: 32px 24px 28px; width: 92%;}
  .cancellation-modal-title {font-size: 20px;}
  .cancellation-modal-message {font-size: 13px;}
  .cancellation-modal-button {padding: 11px 44px; font-size: 14px;}
  .confirm-dialog-content {padding: 28px 20px 24px;}
  .confirm-dialog-title {font-size: 18px;}
  .confirm-dialog-btn {font-size: 14px; padding: 11px 0;}
  .not-found-page__code {font-size: 5rem;}
  .not-found-page__heading {font-size: 1.25rem;}
  .not-found-page__description {font-size: 0.9rem;}
  /* .payment-page-content {margin: 12px auto; width: calc(100% - 24px); padding: 10px;} */
  .stripe-payment-card {padding: 20px 16px;}
  .user-details-form .ud-form-group {margin-bottom: 30px;}
  .footer-submit-btn, .footer-clear-btn  {width: 130px; font-size: 12px; padding: 12px 0;}
}


