/* Footer styles */

.footer {
    background-color: #f8f9fa;
    border-top: 1px solid #e0e0e0;
    padding: 20px 0;
    text-align: left;
    font-size: 13px;
    color: #666;
    margin-top: auto;
}

.footer-content {
    width: 1000px;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer p {
    margin: 0;
    display: inline;
}

.footer .separator {
    margin: 0 15px;
    color: #ccc;
}

.footer a {
    color: #007AFF;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.footer a.secondary {
    color: #8E8E93;
}

.footer a.secondary:hover {
    color: #007AFF;
    text-decoration: underline;
}

/* Dark mode footer */
@media (prefers-color-scheme: dark) {
    .footer {
        background-color: #2a2a2a;
        border-top: 1px solid #444;
        color: #ccc;
    }

    .footer a {
        color: #0A84FF;
    }

    .footer a.secondary {
        color: #8E8E93;
    }

    .footer a.secondary:hover {
        color: #0A84FF;
    }
}