/* Toast component styles */

.doodisho-toast-root {
    position: fixed;
    top: 16px;
    left: 16px;
    z-index: 300;
    display: grid;
    gap: 8px;
    width: min(320px, calc(100% - 32px));
}

.doodisho-toast {
    border-radius: 12px;
    padding: 11px 12px;
    color: #fff;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
    animation: doodisho-toast-in 0.22s ease;
}

.doodisho-toast.is-leaving {
    opacity: 0;
    transform: translateX(-10px);
}

.doodisho-toast-success {
    background: #2ea44f;
}

.doodisho-toast-error {
    background: #d73a49;
}

.doodisho-toast-info {
    background: #0b7fd0;
}

@keyframes doodisho-toast-in {
    from {
        opacity: 0;
        transform: translateX(-12px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
