/* Display counter as wide as needed to see the longest line of text 
Display is inline so the width code has no effect so it is commented out */
.visitor-counter {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 14px;
    z-index: 1000;
    display: none;
    /* width: max-content; Ensures width is based on content */
    /* min-width: fit-content; Fallback for older browsers */
    /* white-space: nowrap; Prevents text wrapping */
}
.visitor-counter p {
    margin: 5px 0;
}