/* Dynamic Content Loading Styles */
.dynamic-content-container {
    position: relative;
    min-height: 100vh;
    width: 100%;
}

.back-to-home-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 990;
    border-radius: 50px;
    padding: 10px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.back-to-home-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Animation for page transitions */
.dynamic-content-container.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

.dynamic-content-container.fade-out {
    animation: fadeOut 0.5s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeOut {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(20px); }
}
