/* Toast Notification Styles */
.toast-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #28a745;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    max-width: 300px;
}

.toast-notification.show {
    transform: translateX(0);
}

.toast-notification.toast-success {
    background: #28a745;
}

.toast-notification.toast-error {
    background: #dc3545;
}

.toast-notification.toast-warning {
    background: #ffc107;
    color: #212529;
}

.toast-notification.toast-info {
    background: #17a2b8;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 8px;
}

.toast-content i {
    font-size: 16px;
}

.toast-content span {
    font-size: 14px;
    font-weight: 500;
}