/* Toast Notifications */
.toast-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 300px;
    z-index: 9999;
    transform: translateX(120%);
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-left: 5px solid #ccc;
}

.toast-notification.show {
    transform: translateX(0);
}

.toast-notification.success {
    border-left-color: #2ecc71;
}

.toast-notification.success i {
    color: #2ecc71;
}

.toast-notification.error {
    border-left-color: #e74c3c;
}

.toast-notification.error i {
    color: #e74c3c;
}

.toast-notification.info {
    border-left-color: #3498db;
}

.toast-notification.info i {
    color: #3498db;
}

.toast-notification span {
    color: #333;
    font-weight: 500;
    font-size: 14px;
}
