/* Mobile Checklist Button */
.mobile-checklist-btn {
    display: none;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--bg-tertiary);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-size: 14px;
    margin-left: 8px;
}

@media (max-width: 768px) {
    .mobile-checklist-btn {
        display: flex;
    }

    /* Hide desktop one if needed, or keep it */
    .header-right .icon-btn[href="/checklist.html"] {
        display: none !important;
    }
}