/* Footer styles */
footer {
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

/* Add a subtle hover effect to the footer */
footer:hover {
    box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.08);
}

/* Additional styles for dark mode footer */
body.dark-mode footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Make privacy settings more noticeable */
#privacy-settings {
    position: relative;
    z-index: 10;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

#privacy-settings:hover {
    background-color: rgba(74, 99, 231, 0.1);
}

/* Footer responsive styles */
@media (max-width: 768px) {
    footer {
        padding: 20px 0;
    }
    
    .footer-content {
        justify-content: center;
        gap: 20px;
    }
    
    .copyright {
        align-items: center;
        text-align: center;
        margin-bottom: 15px;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    footer {
        padding: 15px 0;
    }
    
    .copyright p {
        font-size: 0.85rem;
    }
    
    #privacy-settings {
        font-size: 0.8rem;
    }
    
    .top-arrow {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}
