/* Moonfires View Counter - Frontend UI */

.mfvc-post-badge-container {
    margin-bottom: 24px; /* Space between the badge and the first paragraph */
    display: flex;
    align-items: center;
}

.mfvc-post-badge {
    display: inline-flex;
    align-items: center;
    background-color: #f3f4f6; /* Soft gray background */
    color: #374151; /* Dark gray text */
    padding: 6px 14px;
    border-radius: 9999px; /* Perfect pill shape */
    font-size: 13px;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    border: 1px solid #e5e7eb;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.mfvc-post-badge:hover {
    background-color: #e5e7eb;
    color: #111827;
}

.mfvc-eye-icon {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    color: #6b7280; /* Slightly lighter gray for the icon */
}

.mfvc-count-text {
    line-height: 1;
}