.visitor-stats {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2px;
}

.stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.stats-card {
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
    flex: 1;
    min-width: 250px;
}

.stats-number {
    font-size: 36px;
    font-weight: bold;
    color: #007bff;
    margin: 10px 0;
}

.stats-detail {
    font-size: 16px;
    margin-bottom: 8px;
}

.stats-card h3 {
    margin-top: 0;
    color: #495057;
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.stats-card ul {
    padding-left: 2px;
    margin: 0;
}

.stats-card li {
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .stats-row {
        flex-direction: column;
    }
}