/* Reusable Floating Toast Notifications */

.core-toast-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    z-index: 999999;
    pointer-events: none;
}

.core-toast-item {
    pointer-events: auto;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.4rem;
    border-radius: 12px;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.4;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transform: translateY(20px) scale(0.95);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.core-toast-item.core-toast-show {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.core-toast-success {
    background-color: #064e3b;
    border: 1px solid #10b981;
    color: #6ee7b7;
}

.core-toast-error {
    background-color: #7f1d1d;
    border: 1px solid #ef4444;
    color: #fca5a5;
}

.core-toast-info {
    background-color: #0c4a6e;
    border: 1px solid #0ea5e9;
    color: #bae6fd;
}

.core-toast-icon {
    font-size: 1.1rem;
}
