.premium-visitor-tracker {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    border: 1px solid #eee;
    padding: 15px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    max-width: 350px;
}

.premium-visitor-tracker .stat-row {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
}

.premium-visitor-tracker .stat-row:last-child {
    border-bottom: none;
}

.premium-visitor-tracker .stat-icon {
    width: 30px;
    display: flex;
    justify-content: center;
    color: #333;
}

.premium-visitor-tracker .stat-label {
    flex-grow: 1;
    font-weight: 600;
    font-size: 14px;
    color: #2c3e50;
    padding-left: 10px;
}

.premium-visitor-tracker .stat-value {
    font-weight: 700;
    font-size: 16px;
    color: #000;
    min-width: 60px;
    text-align: right;
}

/* Match the color scheme in the image if possible */
.premium-visitor-tracker .stat-value {
    color: #d35400; /* Orange-ish for the online count as per image */
}

.premium-visitor-tracker .stat-row:nth-child(n+2) .stat-value {
    color: #333;
}

/* Admin Dashboard Styles */
.visitor-tracker-admin {
    margin: 20px 20px 0 0;
}

.stats-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.visitor-tracker-admin .stat-card {
    background: #fff;
    border: 1px solid #ccd0d4;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    text-align: center;
}

.visitor-tracker-admin .stat-card h3 {
    margin: 0 0 10px 0;
    font-size: 14px;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.visitor-tracker-admin .stat-card .value {
    font-size: 32px;
    font-weight: 700;
    color: #23282d;
}

.visitor-tracker-admin .stat-card .value.online {
    color: #d35400;
}

.recent-activity-section {
    background: #fff;
    border: 1px solid #ccd0d4;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.recent-activity-section h2 {
    margin-top: 0;
}
