/* Drachma Divvy — small overrides on top of Tailwind CDN. */

html {
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, sans-serif;
}

[data-loading="true"] {
    cursor: progress;
    opacity: 0.7;
    pointer-events: none;
}

.toast-stack {
    display: flex;
    flex-direction: column-reverse;
    gap: 0.5rem;
    position: fixed;
    inset-inline: 1rem;
    bottom: 5.5rem;
    z-index: 60;
}

@media (min-width: 768px) {
    .toast-stack {
        inset-inline: auto;
        right: 1.5rem;
        bottom: 1.5rem;
        width: 20rem;
    }
}
