body {
  padding: 2rem;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1080;
}

.modal-content {
  background-color: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3);
  max-width: 500px;
  width: 90%;
  position: relative;
  text-align: center;
}

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

.btn-primary {
  background-color: #485268;
  border: none;
  color: #fff;
  padding: 10px 20px;
  margin-top: 15px;
  text-decoration: none;
  border-radius: 6px;
  display: inline-block;
}

.btn-primary:hover {
  background-color: #2c3b50;
}

/* Optional tweaks for offcanvas */

.offcanvas {
  background-color: #fdfdfd;
  box-shadow: 2px 0 15px rgba(0, 0, 0, 0.2);
  z-index: 1080;
}

.offcanvas-header {
  border-bottom: 1px solid #e0e0e0;
}

.offcanvas-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #485268;
}

.offcanvas-body {
  font-size: 1rem;
  color: #333;
}

/* Reuse from cap modal */

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1050;
}

.modal-content {
  background-color: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  width: 90%;
  max-width: 400px;
  position: relative;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #000;
}

.dropbtn {
  background-color: #4CAF50;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #057ff8;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

.dropdown:hover .dropbtn {
  background-color: #3e8e41;
}

#Donations .col-md-4 {
  max-width: 30%;
}

#Donations .col {
  flex: 1;
}

.glow-bg-gold {
  background: radial-gradient(circle at center, #b69f8b40 30%, #485268 80%);
}

.glow-box {
  background: radial-gradient(circle at center, #b69f8baa 0%, #485268 85%);
  border: 1.5px solid #b69f8b;
  border-radius: 16px;
  box-shadow: 0 0 14px #b69f8b80, 0 0 6px #b69f8b40 inset;
}

.glow-box {
  background: radial-gradient(circle at center, #b69f8baa 0%, #485268 85%);
  border-radius: 16px;
  border: 1.5px solid #ccd1d5;
  box-shadow: 0 0 14px #b69f8b80, 0 0 6px #b69f8b40 inset;
}

@keyframes scrollTicker {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.ticker-content span {
  display: inline-block;
  font-size: 0.95rem;
}

@keyframes scrollTicker {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.ticker-container {
  background: radial-gradient(circle at center, #b69f8baa 0%, #485268 85%);
  border: 1.5px solid #b69f8b;
  box-shadow: 0 0 14px #b69f8b80, 0 0 6px #b69f8b40 inset;
  border-radius: 30px 30px 0 0;
  height: 55px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.ticker-content {
  animation: scrollTicker 30s linear infinite;
  white-space: nowrap;
  display: inline-flex;
  gap: 2rem;
}

.ticker-container:hover .ticker-content {
  animation-play-state: paused;
}

.ticker-item {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.ticker-item:hover {
  color: #b69f8b;
  text-decoration: underline;
}

