/* Bigpage Visitor Counter – Frontend Styles */

.bpvc-wrap {
    display: inline-block;
    width: 100%;
    max-width: 280px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 16px 18px 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
    font-family: inherit;
    box-sizing: border-box;
}

/* Odometer */
.bpvc-odo-wrap {
    display: inline-flex;
    gap: 3px;
    background: #1a1a2e;
    padding: 6px 10px;
    border-radius: 4px;
    margin-bottom: 14px;
}

.bpvc-digit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 38px;
    background: #16213e;
    color: #f5f5f5;
    font-size: 1.25rem;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    border-radius: 3px;
    border-top: 1px solid #2a2a4a;
    box-shadow: inset 0 -2px 4px rgba(0,0,0,.4);
    position: relative;
}

.bpvc-digit::after {
    content: '';
    position: absolute;
    left: 0; right: 0; top: 50%;
    height: 1px;
    background: rgba(255,255,255,.08);
}

/* Stats list */
.bpvc-stats {
    list-style: none;
    margin: 0;
    padding: 0;
}

.bpvc-stats li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .88rem;
    padding: 4px 0;
    border-bottom: 1px dashed #f0f0f0;
}

.bpvc-stats li:last-child { border-bottom: none; }

.bpvc-stats li strong {
    margin-left: auto;
    font-weight: 600;
}

.bpvc-icon { font-size: 1rem; }


