/* Footer Styles */
#app-footer {
    width: 100%;
    text-align: center;
    padding: 15px 0;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: rgba(30, 30, 30, 0.8);
    z-index: 100;
}

#app-footer a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

#app-footer a:hover {
    text-decoration: underline;
    color: rgba(255, 255, 255, 1);
}

/* Mobile Footer Styles */
@media (max-width: 768px) {
    #app-footer {
        padding: 10px 0;
        margin-top: 0;
        font-size: 0.8rem;
    }
}