.bg-glow {
  position: relative;
  z-index: 0;
  padding: 0.25rem;
}
.bg-glow-inner {
  position: absolute;
  z-index: -1;
  inset: -15px;

  overflow: hidden;

  filter: blur(20px);
  mask-image: radial-gradient(black 20%, transparent 70%);

  background: linear-gradient(
    45deg,
    #ff0000,
    #ff7300,
    #fffb00,
    #48ff00,
    #00ffd5,
    #002bff,
    #7a00ff,
    #ff00c8,
    #ff0000,
    #ff7300,
    #fffb00,
    #48ff00,
    #00ffd5
  );
  background-size: 500px 250px;
  animation: glowing 10s linear infinite;
}

@keyframes glowing {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 500px 0;
  }
}

.p-4 {
  padding: 4em;
}
.inline-block {
  display: inline-block;
}
.rounded-full {
  border-radius: 9999px;
}
.border {
  border-style: solid;
}
.border-2 {
  border-width: 2px !important;
}
.border-light {
  border-color: #f8f9fa;
}
.bg-main {
  background-color: oklch(12.9% 0.042 264.695);
}
.bg-gray-300 {
  background-color: gray;
}
.bg-orange-200 {
  background-color: rgb(254 215 170);
}

.pt-1 {
  padding-top: 0.5rem;
}
.pt-2 {
  padding-top: 0.625rem;
}
.pt-2 {
  padding-top: 0.625rem;
}
.pt-1 {
  padding-top: 0.5rem;
}

.pb-2 {
  padding-bottom: 0.625rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.text-white {
  color: white;
}
.overflow-hidden {
  overflow: hidden;
}

#dono-button {
  font-size: 0.875rem; /* Same as btn-sm */
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  min-width: 4.5rem; /* Set fixed minimum width instead of percentage */
  border-width: 2px !important;
}
#dono-button:hover {
  background-color: #ee2b2c;
}
#dono-button:active {
  background-color: #f16b46;
}

.custom-center-aligned {
  display: flex;
  justify-self: center;
  justify-content: center;
  justify-items: center;
  width: 100%;
}
