.toggle-checkbox {
        display: none;
    }

    /* Hide more tags by default */
    .more-tags {
        display: none;
        flex-wrap: wrap;
    }

    /* Show more tags and hide "Show More Tags" link when checkbox is checked */
    .toggle-checkbox:checked ~ .show-more-link {
        display: none;
    }
    .toggle-checkbox:checked ~ .more-tags {
        display: flex;
        flex-wrap: wrap;
    }

    /* Style the "Show More Tags" link */
    .show-more-link {
        cursor: pointer;
        color: blue;
        text-decoration: underline;
        display: inline-block;
        margin-top: 8px;
    }

    /* Style links as black */
    .nav-link.tag-name {
        color: black;
        text-decoration: none;
    }