/* Footer Styles */
:root {
    --ios-blue: #007AFF;
    --ios-gray: #8E8E93;
    --ios-light-gray: #F2F2F7;
    --ios-dark-gray: #1C1C1E;
}

.footer-wrapper {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.footer {
    background-color: white !important;
    border-top: 1px solid rgba(0,0,0,0.1) !important;
    padding: 12px 16px !important;
    text-align: center !important;
    box-shadow: 0 -2px 4px rgba(0,0,0,0.1) !important;
    height: 60px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

@media (min-width: 992px) {
    .footer {
        padding-left: 296px !important; /* 280px sidebar + 16px padding */
    }
}

.footer-text {
    color: var(--ios-gray) !important;
    font-size: 14px !important;
    margin: 0 !important;
}

.footer a {
    color: var(--ios-blue);
    text-decoration: none;
    transition: color 0.2s;
}

.footer a:hover {
    color: #0062cc;
} 