/* ========================================
   USER PANEL FOOTER - SIMPLE SITE FOOTER
   ======================================== */

/* Footer Container */
footer {
    background: #ffffff;
    border-top: 1px solid #dee2e6;
    padding: 1.5rem 0;
    margin-top: auto;
}

/* Footer Content */
footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Footer Links */
footer a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #495057;
}

/* Footer Text */
footer .text-muted {
    color: #6c757d !important;
}

/* Responsive Footer */
@media (max-width: 768px) {
    footer .container {
        text-align: center;
    }
    
    footer .d-flex {
        justify-content: center;
        margin-top: 1rem;
    }
}

/* Footer Animation */
footer {
    animation: fadeInUp 0.6s ease-out;
}

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