@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --accent: #ef4444;
  --ink: #0f172a;
  --muted: #64748b;
  --bg: #f9fafb;
  --primary: #dc2626;
  --primary-dark: #991b1b;
  --primary-light: #fca5a5;
  --secondary: #f59e0b;
  --success: #10b981;
  --dark: #1e293b;
  --light: #f8fafc;
  --gray: #64748b;
  --border: #e2e8f0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  padding-top: 80px;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.header-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.nav {
  max-width: 1400px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
}

.brand {
  cursor: pointer;
  transition: transform 0.2s ease;
}

.brand:hover {
  transform: scale(1.05);
}

.brand img {
  width: 120px;
  height: 120px;
  border-radius: 0;
  display: block;
  transition: opacity 0.2s ease;
}

.brand:hover img {
  opacity: 0.9;
}

.brand .name,
.brand .tag {
  display: none;
}

.links {
  display: flex;
  gap: 8px;
}

.links a {
  padding: 10px 20px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
  transition: all 0.2s;
}

.links a:hover {
  color: var(--ink);
  background: rgba(0, 0, 0, 0.04);
}

.links a.active {
  color: var(--ink);
  position: relative;
}

.links a.active::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 20px;
  right: 20px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

/* Mobile Menu - no card, branded red icon, morphs to X */
.mobile-menu-btn {
  display: none;
  position: relative;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  font-size: 24px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: transform 0.2s ease, color 0.2s ease;
}

.mobile-menu-btn:hover {
  color: var(--primary-dark);
  transform: scale(1.05);
}

.mobile-menu-btn svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  transition: opacity 0.2s ease;
}

.mobile-menu-btn .icon-hamburger,
.mobile-menu-btn .icon-close {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.mobile-menu-btn .icon-close {
  opacity: 0;
  pointer-events: none;
}

body.mobile-nav-open .mobile-menu-btn .icon-hamburger {
  opacity: 0;
  pointer-events: none;
}

body.mobile-nav-open .mobile-menu-btn .icon-close {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 70vw;
  max-width: 400px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.15);
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 100px 32px 32px;
  overflow-y: auto;
}

.mobile-nav.active {
  transform: translateX(0);
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-nav.active~.mobile-nav-overlay {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: color 0.2s ease, transform 0.2s ease;
}

.mobile-nav-close:hover {
  color: var(--primary-dark);
  transform: scale(1.1);
}

.mobile-nav-close svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-nav-links a {
  padding: 18px 24px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  font-weight: 600;
  font-size: 17px;
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  background: rgba(239, 68, 68, 0.15);
  color: var(--accent);
  transform: translateX(4px);
  border-color: rgba(239, 68, 68, 0.2);
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 12px;
  border: none;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.button.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 20px rgba(239, 68, 68, 0.3);
}

.button.primary:hover {
  box-shadow: 0 12px 28px rgba(239, 68, 68, 0.4);
}

.button.donate-cta {
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(239, 68, 68, 0.3);
  color: var(--accent);
  font-weight: 800;
}

.button.donate-cta:hover {
  border-color: var(--accent);
  background: #fff;
}

/* Hero */
.hero {
  padding: 80px 0;
  text-align: center;
}

.h1 {
  font-size: clamp(48px, 8vw, 84px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
}

.lead {
  font-size: clamp(18px, 2.5vw, 24px);
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto 40px;
}

.hero-image {
  margin-top: 60px;
  background: #fff;
  padding: 16px;
  border-radius: 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.hero-image img {
  width: 100%;
  border-radius: 24px;
  display: block;
}

/* Sections */
.glass {
  background: #fff;
  border-radius: 32px;
  padding: 60px;
  margin: 80px 0;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.kicker {
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  margin-top: 0;
  padding-top: 0;
  display: block;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin: 80px 0;
}

.card {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: all 0.3s;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-image {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
}

.card-image img {
  width: 100%;
  display: block;
}

.card h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
}

.card p {
  color: var(--muted);
  line-height: 1.7;
}

/* Modals */
.help-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(30px);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.help-modal.active {
  display: flex;
}

.modal-content {
  background: #fff;
  width: min(560px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 32px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2);
  position: relative;
  padding: 48px 48px 48px 48px;
}

.modal-header {
  padding: 48px 48px 32px;
  text-align: center;
  border-bottom: 1px solid #f1f5f9;
}

.modal-header img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  display: block;
}

.modal-header h2 {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 12px;
}

.modal-header p {
  color: var(--muted);
  font-size: 16px;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #f1f5f9;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  z-index: 10;
  transition: all 0.2s;
}

.modal-close:hover {
  background: #e2e8f0;
  transform: rotate(90deg);
}

.modal-body {
  padding: 32px 48px 48px;
}

/* Contact Form Styling */
.stripe-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stripe-form label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--dark);
}

.stripe-form input,
.stripe-form select,
.stripe-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(20, 20, 30, 0.12);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

.stripe-form input:focus,
.stripe-form select:focus,
.stripe-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.stripe-form textarea {
  resize: vertical;
  min-height: 120px;
}

.stripe-form .button.primary {
  margin-top: 8px;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
}

.donation-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  background: #f8fafc;
  padding: 6px;
  border-radius: 12px;
}

.donation-tab {
  flex: 1;
  padding: 12px 20px;
  border: none;
  background: transparent;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
}

.donation-tab.active {
  background: #fff;
  color: var(--accent);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.donation-amounts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.amount-btn {
  padding: 20px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  font-weight: 800;
  font-size: 20px;
  transition: all 0.2s;
  color: var(--ink);
}

.amount-btn:hover {
  border-color: var(--accent);
  background: #fef2f2;
  transform: translateY(-2px);
}

.amount-btn.active {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 16px rgba(239, 68, 68, 0.3);
}

.custom-amount-wrapper {
  position: relative;
  margin-bottom: 32px;
}

.custom-amount-wrapper label {
  display: block;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.custom-amount-wrapper .currency-symbol {
  position: absolute;
  left: 20px;
  bottom: 18px;
  font-weight: 900;
  font-size: 24px;
  color: var(--muted);
}

.custom-amount-wrapper input {
  width: 100%;
  padding: 18px 20px 18px 50px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 24px;
  font-weight: 800;
  background: #f8fafc;
}

.custom-amount-wrapper input:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

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

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  background: #f8fafc;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.form-submit {
  width: 100%;
  padding: 20px;
  border: none;
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 8px 20px rgba(239, 68, 68, 0.3);
  transition: all 0.3s;
}

.form-submit:hover {
  background: #dc2626;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(239, 68, 68, 0.4);
}

.stripe-badge {
  margin-top: 24px;
  padding: 20px;
  background: #f8fafc;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #e2e8f0;
}

.stripe-badge p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

/* Footer */
.footer {
  background: var(--ink);
  color: #fff;
  padding: 60px 0 40px;
  border-radius: 60px 60px 0 0;
  margin-top: 120px;
}

/* Footer */
footer {
  background: var(--bg);
  padding: 3rem 1.5rem 1.5rem;
  margin-top: 4rem;
  border-top: 1px solid var(--border);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-section h4 {
  font-family: 'Outfit', sans-serif;
  color: var(--primary);
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.footer-section p,
.footer-section a {
  color: var(--gray);
  text-decoration: none;
  display: block;
  margin-bottom: 0.375rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

.footer-section a:hover {
  color: var(--primary);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright {
  color: var(--gray);
  font-size: 0.8125rem;
}

.signature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--gray);
  font-size: 0.8125rem;
}

.signature-svg {
  height: 36px !important;
  width: auto !important;
  max-width: 240px;
  opacity: 0.85;
  display: block;
}

/* Responsive - header and logo scale for smaller screens */
@media (max-width: 768px) {
  body {
    padding-top: 68px;
  }

  .nav {
    padding: 8px 16px;
  }

  .links {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .brand img {
    width: 88px;
    height: 88px;
  }

  .h1 {
    font-size: 48px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .modal-header,
  .modal-body {
    padding: 32px 24px;
  }

  .donation-amounts {
    grid-template-columns: 1fr 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  body {
    padding-top: 64px;
  }

  .nav {
    padding: 6px 12px;
  }

  .brand img {
    width: 72px;
    height: 72px;
  }
}

/* Modal Overlay - Matching Homepage */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 1000;
  animation: fadeIn 0.3s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.modal-overlay.active {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  min-height: 100vh;
}

@media (max-width: 768px) {
  .modal-overlay.active {
    padding: 0;
    align-items: flex-end;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Claymorphism Modal */
.modal,
.modal-clay {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 32px;
  max-width: 600px;
  width: 100%;
  height: auto;
  max-height: 85vh !important;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    inset 0 -1px 0 rgba(0, 0, 0, 0.05);
  animation: slideUp 0.4s ease;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.5);
  margin: auto;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .modal {
    max-width: 100%;
    width: 100%;
    border-radius: 24px 24px 0 0;
    max-height: 85vh !important;
    margin: 0;
    animation: slideUpMobile 0.3s ease;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .modal {
    max-width: 700px;
    max-height: 85vh !important;
  }
}

@media (min-width: 1025px) {
  .modal {
    max-width: 600px;
    max-height: 85vh !important;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUpMobile {
  from {
    opacity: 0;
    transform: translateY(100%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-header {
  padding: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  flex-shrink: 0;
}

.modal-header h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.75rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.modal-header p {
  color: var(--gray);
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .modal-header {
    padding: 1.5rem 1.25rem;
  }

  .modal-header h3 {
    font-size: 1.5rem;
    padding-right: 2.5rem;
  }

  .modal-header p {
    font-size: 0.875rem;
  }
}

.close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.08);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 1.5rem;
  line-height: 1;
  transition: all 0.25s ease;
  z-index: 100;
  pointer-events: auto;
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.close-btn:hover {
  background: rgba(255, 255, 255, 1);
  transform: rotate(90deg) scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

@media (max-width: 768px) {
  .close-btn {
    top: 1.25rem;
    right: 1.25rem;
    width: 36px;
    height: 36px;
    font-size: 1.25rem;
  }
}

.modal-body {
  padding: 2rem;
  overflow-y: auto;
  overflow-x: hidden;
  flex: 1 1 auto;
  min-height: 0;
  max-height: calc(85vh - 120px);
}

@media (max-width: 768px) {
  .modal-body {
    padding: 1.5rem 1.25rem;
    max-height: calc(85vh - 100px);
  }
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--dark);
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.2s ease;
  background: #fff;
  box-sizing: border-box;
}

@media (max-width: 768px) {

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.75rem 0.875rem;
    font-size: 16px;
    /* Prevents zoom on iOS */
  }
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

@media (max-width: 768px) {
  .form-group textarea {
    min-height: 100px;
  }
}

.submit-btn {
  width: 100%;
  padding: 1.125rem;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .submit-btn {
    padding: 1rem;
    font-size: 1rem;
    border-radius: 10px;
  }
}

.submit-btn:hover:not(:disabled) {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

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