/* ============================================
 * GLOBAL TOAST COMPONENT
 * ============================================
 * Unified toast notifications across all pages
 */

.app-toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 100px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    opacity: 0;
    transform: translateY(100px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10000;
    pointer-events: none;
}

.app-toast--visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.app-toast--success {
    border: 2px solid #00C853;
}

.app-toast--success .app-toast__icon {
    background: #00C853;
}

.app-toast--error {
    border: 2px solid #E53935;
}

.app-toast--error .app-toast__icon {
    background: #E53935;
}

.app-toast--info {
    border: 2px solid #0606EF;
}

.app-toast--info .app-toast__icon {
    background: #0606EF;
}

.app-toast__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    background: #00C853;
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
}

.app-toast__message {
    color: #2E2D2C;
    line-height: 1.4;
}

/* Mobile responsive */
@media (max-width: 640px) {
    .app-toast {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
    }
}
