/* Footer Styles - Synced from aleeshailyas.com/jeshuuupdf/ */

footer {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

footer a {
    text-decoration: none;
    transition: color 0.2s ease;
}

/* Floating dark mode toggle button */
#floatingThemeToggle {
    position: fixed;
    bottom: 28px;
    left: 28px;
    z-index: 9996;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    box-shadow: 0 2px 16px rgba(0,0,0,0.13);
    transition: all 0.2s ease;
    outline: none;
}

.dark #floatingThemeToggle {
    background: #1f2937;
}
