/* Donation request: a centred box over a dimmed page, shown once after 30 seconds on the site */
#donations { display: none; position: fixed; inset: 0; z-index: 3000; align-items: center; justify-content: center; background-color: rgba(0, 0, 0, 0.6); }
#donations .insides { position: relative; max-width: 30rem; margin: 1rem; padding: 1.5rem; border-radius: 5px; background-color: #fff; text-align: center; }
#donations .close { position: absolute; top: 0.25rem; right: 0.75rem; color: var(--wp--preset--color--hdyo-blue); font-weight: 700; text-decoration: none; }
#donations h1 { margin: 0 0 0.5rem; color: var(--wp--preset--color--hdyo-pink); font-size: var(--wp--preset--font-size--x-large); }
#donations .menuitem { display: inline-flex; align-items: center; gap: 0.25rem; margin-top: 1rem; padding: 5px 15px; border-radius: 5px; background-color: var(--wp--preset--color--hdyo-pink); color: #fff; font-weight: 700; text-decoration: none; }
#donations .menuitem svg { height: 1rem; width: auto; fill: currentColor; }
@media print { #donations { display: none !important; } }
