/* Sticky Footer Styles */
.sticky-footer-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--theme-color);
    padding: 5px 0;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.sticky-footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.sticky-footer-link {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sticky-footer-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Add padding to body to prevent content from being hidden behind sticky footer */
body {
    padding-bottom: 40px;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .sticky-footer-bar {
        padding: 5px 0;
    }
    
    .sticky-footer-link {
        font-size: 14px;
    }
    
    body {
        padding-bottom: 35px;
    }
} 