.theme-toggle {
    position: fixed;
    top: 12px;
    right: 12px;
    z-index: 1050;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
}

.suggested-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* Space between tags */
    margin-top: 10px;
}

.suggested-tag-link {
    padding: 4px 8px;
    border: 1px solid var(--bs-border-color);
    border-radius: 4px;
    text-decoration: none;
    color: var(--bs-body-color);
    background-color: var(--bs-secondary-bg);
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s; /* Smooth transition on hover */
}

.suggested-tag-link:hover {
    background-color: #007BFF;
    color: white;
}

/* On mobile, adjust padding and display to ensure proper wrapping */
@media (max-width: 600px) {
    .suggested-tags {
        justify-content: flex-start; /* Left-align on small screens */
    }

    .suggested-tag-link {
        font-size: 14px; /* Smaller text on mobile */
        padding: 6px 12px;
    }
}
