.toast-container {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 400px;
    pointer-events: none;
}

.toast {
    background: white;
    padding: 16px 20px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: toast-in 0.3s ease forwards;
    pointer-events: auto;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.toast-closing {
    animation: toast-out 0.3s ease forwards;
}

.toast-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.toast-message {
    font-size: 14px;
    font-weight: 500;
    color: #1A1A1A;
}

/* Types */
.toast-success { border-left: 4px solid #84DE93; }
.toast-error { border-left: 4px solid #E98F8F; }
.toast-info { border-left: 4px solid #84D8DE; }
.toast-warning { border-left: 4px solid #FFB067; }

.toast-success i { color: #84DE93; }
.toast-error i { color: #E98F8F; }
.toast-info i { color: #84D8DE; }
.toast-warning i { color: #FFB067; }

@keyframes toast-in {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes toast-out {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(100%); opacity: 0; }
}
