#beryl-toast-container {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100001;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    pointer-events: none;
    max-width: min(92vw, 420px);
}

@media (min-width: 768px) {
    #beryl-toast-container {
        top: auto;
        bottom: 24px;
        right: 24px;
        left: auto;
        transform: none;
        align-items: flex-end;
    }
}

.beryl-toast {
    padding: 12px 18px;
    border-radius: 10px;
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.4;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.28s ease, transform 0.28s ease;
    pointer-events: auto;
}

.beryl-toast--visible {
    opacity: 1;
    transform: translateY(0);
}

.beryl-toast--success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.beryl-toast--draft {
    background: #e3f2fd;
    color: #1565c0;
    border: 1px solid #90caf9;
}

.beryl-toast--saving {
    background: #f5f5f5;
    color: #616161;
    border: 1px solid #e0e0e0;
}

.beryl-toast--error {
    background: #fff3e0;
    color: #e65100;
    border: 1px solid #ffcc80;
}
