/**
 * Toast Notification Styles
 */

.toast-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    min-width: 250px;
    animation: slideInRight 0.3s ease-out;
}

.toast-info {
    background-color: #0071e3;
}

.toast-success {
    background-color: #34c759;
}

.toast-error {
    background-color: #ff3b30;
}

.toast-warning {
    background-color: #ff9500;
}

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

/* Back to Top Button */
.back-to-top {
    transition: all 0.3s;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}

/* Fade In on Scroll */
.fade-in-on-scroll {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-on-scroll.fade-in {
    opacity: 1;
    transform: translateY(0);
}

